Exemplo n.º 1
0
 public void writeNextRecord(DatabaseHandle dh, long record) throws IOException {
   myLogic.fillBytes(record, dh.currentRecord, 0);
   writeFullBytes(dh, dh.currentRecord, 0, myLogic.recordBytes);
 }
Exemplo n.º 2
0
 protected void writeRecordFromByteIndex(DatabaseHandle dh, long byteIndex, long record)
     throws IOException {
   myLogic.fillBytes(record, dh.currentRecord, 0);
   writeFullBytes(dh, byteIndex, dh.currentRecord, 0, myLogic.recordBytes);
 }