Пример #1
0
        public static new HBplusTree Initialize(System.IO.Stream treefile, System.IO.Stream blockfile, int prefixLength, int cultureId,
                                                int nodesize, int buffersize)
        {
            HBplusTreeBytes tree = HBplusTreeBytes.Initialize(treefile, blockfile, prefixLength, cultureId, nodesize, buffersize);

            return(new HBplusTree(tree));
        }
Пример #2
0
        public static new HBplusTree Initialize(string treefileName, string blockfileName, int prefixLength, int cultureId,
                                                int nodesize, int buffersize)
        {
            HBplusTreeBytes tree = HBplusTreeBytes.Initialize(treefileName, blockfileName, prefixLength, cultureId, nodesize, buffersize);

            return(new HBplusTree(tree));
        }
Пример #3
0
        public static new HBplusTree ReadOnly(string treefileName, string blockfileName)
        {
            HBplusTreeBytes tree = HBplusTreeBytes.ReadOnly(treefileName, blockfileName);

            return(new HBplusTree(tree));
        }
Пример #4
0
 public HBplusTree(HBplusTreeBytes tree)
     : base(tree)
 {
     this.xtree = tree;
 }
Пример #5
0
        public static new HBplusTree ReOpen(System.IO.Stream treefile, System.IO.Stream blockfile)
        {
            HBplusTreeBytes tree = HBplusTreeBytes.ReOpen(treefile, blockfile);

            return(new HBplusTree(tree));
        }
Пример #6
0
        public static new HBplusTree Initialize(System.IO.Stream treefile, System.IO.Stream blockfile, int keyLength)
        {
            HBplusTreeBytes tree = HBplusTreeBytes.Initialize(treefile, blockfile, keyLength);

            return(new HBplusTree(tree));
        }
Пример #7
0
        public static new HBplusTree Initialize(string treefileName, string blockfileName, int prefixLength)
        {
            HBplusTreeBytes tree = HBplusTreeBytes.Initialize(treefileName, blockfileName, prefixLength);

            return(new HBplusTree(tree));
        }