Uses of Class
org.h2.store.PageStore

Packages that use PageStore
org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package. 
org.h2.index Various table index implementations, as well as cursors to navigate in an index. 
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. 
 

Uses of PageStore in org.h2.engine
 

Methods in org.h2.engine that return PageStore
 PageStore Database.getPageStore()
           
 

Uses of PageStore in org.h2.index
 

Methods in org.h2.index with parameters of type PageStore
static Page PageDataOverflow.read(PageStore store, Data data, int pageId)
          Read an overflow page.
 

Uses of PageStore in org.h2.store
 

Constructors in org.h2.store with parameters of type PageStore
InDoubtTransaction(PageStore store, int sessionId, int pos, java.lang.String transaction)
          Create a new in-doubt transaction info object.
PageOutputStream(PageStore store, int trunkPage, BitField exclude, int logKey, boolean atEnd)
          Create a new page output stream.