Package at.jku.sii.sqlitereader.model

Examples of at.jku.sii.sqlitereader.model.Index


    @SuppressWarnings("unchecked")
    BTreePage<IndexCell> tree = (BTreePage<IndexCell>) BTreePages.read(db, this.rootpage);
    assert (!tree.isTable()); // must be a table

    tree.resolve(db);
    this.index = new Index(this, tree);
  }
View Full Code Here

TOP

Related Classes of at.jku.sii.sqlitereader.model.Index

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.