Examples of annotateLast()


Examples of at.jku.sii.sqlitereader.io.ArrayDataInput.annotateLast()

      block.annotateLastInt("nextPage", nextPage);

      int size = block.size() - 4;
      byte[] content = new byte[size];
      block.readFully(content);
      block.annotateLast(content.length, "Payload");
      ArrayDataInput in = new ArrayDataInput(content, block.createLastSubAnnotator(content.length));
      PayloadOverflowPage p = new PayloadOverflowPage(page, nextPage, in);
      list.add(p);
      db.resolvePage(page, p);
      page = nextPage;
View Full Code Here

Examples of at.jku.sii.sqlitereader.io.ChainedArrayDataInput.annotateLast()

    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?
  }

  @Override
  public String toString() {
View Full Code Here

Examples of at.jku.sii.sqlitereader.io.FileDataInput.annotateLast()

      this.incrementalVacuumMode = file.readInt() > 0;
      file.annotateLastInt("incrementalVacuumMode", this.incrementalVacuumMode);
      // reserved
      byte[] reserved = new byte[24];
      file.readFully(reserved);
      file.annotateLast(reserved.length, "reserved");

      this.versionValid4Number = file.readInt("versionValid4Number");
      this.versionSqlite = file.readInt("versionSqlite");
      // end of header
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.