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)); }
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)); }
public static new hBplusTree Initialize(Stream treefile, Stream blockfile, int prefixLength, int cultureId, int nodesize, int buffersize) { hBplusTreeBytes tree = hBplusTreeBytes.Initialize(treefile, blockfile, prefixLength, cultureId, nodesize, buffersize); return(new hBplusTree(tree)); }
public hBplusTree(hBplusTreeBytes tree) : base(tree) { this.xtree = tree; }
public static new hBplusTree ReadOnly(string treefileName, string blockfileName) { hBplusTreeBytes tree = hBplusTreeBytes.ReadOnly(treefileName, blockfileName); return(new hBplusTree(tree)); }
public static new hBplusTree ReOpen(System.IO.Stream treefile, System.IO.Stream blockfile) { hBplusTreeBytes tree = hBplusTreeBytes.ReOpen(treefile, blockfile); return(new hBplusTree(tree)); }
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)); }
public static new hBplusTree Initialize(string treefileName, string blockfileName, int PrefixLength) { hBplusTreeBytes tree = hBplusTreeBytes.Initialize(treefileName, blockfileName, PrefixLength); return(new hBplusTree(tree)); }
public hBplusTree(hBplusTreeBytes tree) : base(tree) { m_xtree = tree; }
public static new hBplusTree Initialize(string treefileName, string blockfileName, int prefixLength, int cultureId) { hBplusTreeBytes tree = hBplusTreeBytes.Initialize(treefileName, blockfileName, prefixLength, cultureId); return(new hBplusTree(tree)); }