Package at.jku.sii.sqlitereader.io

Examples of at.jku.sii.sqlitereader.io.ChainedArrayDataInput


    assert (this.resolvedOveflowPages());
    List<ArrayDataInput> l = new ArrayList<ArrayDataInput>();
    l.add(this.payload);
    for (PayloadOverflowPage o : this.overflowPages)
      l.add(o.getData());
    final ChainedArrayDataInput in = new ChainedArrayDataInput(l);
    this.record = Record.read(in, db.getEncoding());
    in.annotateLast((int) in.currentPosition(), "Record");
    // TODO clean up?
  }
View Full Code Here

TOP

Related Classes of at.jku.sii.sqlitereader.io.ChainedArrayDataInput

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.