Uses of Class
org.h2.store.Record

Packages that use Record
org.h2.index Various table index implementations, as well as cursors to navigate in an index. 
org.h2.log Undo and redo log implementation. 
org.h2.result Implementation of row and internal result sets. 
org.h2.store Storage abstractions, such as a file with a cache, or a class to convert values to a byte array and vice versa. 
org.h2.table Classes related to a table and table meta data. 
 

Uses of Record in org.h2.index
 

Subclasses of Record in org.h2.index
 class BtreeHead
          The head page of a b-tree index.
 class BtreeLeaf
          An outer page of a b-tree index.
 class BtreeNode
          An inner page of a b-tree index.
 class BtreePage
          An abstract b-tree page.
 class PageBtree
          A page that contains index data.
 class PageBtreeLeaf
          A b-tree leaf page that contains index data.
 class PageBtreeNode
          A b-tree node page that contains index data.
 class PageDataLeaf
          A leaf page that contains data of one or multiple rows.
 class PageDataNode
          A leaf page that contains data of one or multiple rows.
 class PageDataOverflow
          Overflow data for a leaf page.
 

Methods in org.h2.index that return Record
 Record BtreeIndex.read(Session session, DataPage s)
           
 

Uses of Record in org.h2.log
 

Methods in org.h2.log with parameters of type Record
 void LogSystem.add(Session session, DiskFile file, Record record)
          Add an log entry to the last transaction log file.
 

Uses of Record in org.h2.result
 

Subclasses of Record in org.h2.result
 class Row
          Represents a row in a table.
 

Uses of Record in org.h2.store
 

Subclasses of Record in org.h2.store
 class Page
          A page.
 class PageFreeList
          The list of free pages of a page store.
 class PageStreamData
          A data page of a stream.
 class PageStreamTrunk
          A trunk page of a stream.
 

Methods in org.h2.store that return Record
 Record PageStore.getRecord(int pos)
          Get the record if it is stored in the file, or null if not.
 Record Storage.getRecord(Session session, int pos)
          Read a record from the file or cache.
 Record Storage.getRecordIfStored(Session session, int pos)
          Read a record if it is stored at that location.
 Record RecordReader.read(Session session, DataPage s)
          Read a record from the data page.
 

Methods in org.h2.store with parameters of type Record
 void Storage.addRecord(Session session, Record record, int pos)
          Add or update a record in the file.
 void Storage.flushRecord(Record rec)
          Write this record now.
 int Storage.getNext(Record record)
          Gets the position of the next record.
 void PageStore.updateRecord(Record record, boolean logUndo, Data old)
          Update a record.
 void Storage.updateRecord(Session session, Record record)
          Update an existing record.
 

Uses of Record in org.h2.table
 

Methods in org.h2.table that return Record
 Record TableData.read(Session session, DataPage s)