Uses of Class
com.healthmarketscience.jackcess.Table

Uses of Table in com.healthmarketscience.jackcess
 

Methods in com.healthmarketscience.jackcess that return Table
 Table Database.getAccessControlEntries()
           
 Table Relationship.getFromTable()
           
 Table Database.getSystemCatalog()
           
 Table Index.getTable()
           
 Table Table.RowState.getTable()
           
 Table Cursor.getTable()
           
 Table Column.getTable()
           
 Table Database.getTable(String name)
           
 Table Database.getTable(String name, boolean useBigIndex)
           
 Table Relationship.getToTable()
           
 Table TableBuilder.toTable(Database db)
          Creates a new Table in the given Database with the currently configured attributes.
 

Methods in com.healthmarketscience.jackcess that return types with arguments of type Table
 Iterator<Table> Database.iterator()
           
 

Methods in com.healthmarketscience.jackcess with parameters of type Table
static Cursor Cursor.createCursor(Table table)
          Creates a normal, un-indexed cursor for the given table.
static Cursor Cursor.createIndexCursor(Table table, Index index)
          Creates an indexed cursor for the given table.
static Cursor Cursor.createIndexCursor(Table table, Index index, Object[] startRow, boolean startInclusive, Object[] endRow, boolean endInclusive)
          Creates an indexed cursor for the given table, narrowed to the given range.
static Cursor Cursor.createIndexCursor(Table table, Index index, Object[] startRow, Object[] endRow)
          Creates an indexed cursor for the given table, narrowed to the given range.
static Map<String,Object> Cursor.findRow(Table table, Index index, Map<String,Object> rowPattern)
          Convenience method for finding a specific row in an indexed table which matches a given row "pattern".
static Map<String,Object> Cursor.findRow(Table table, Map<String,Object> rowPattern)
          Convenience method for finding a specific row in a table which matches a given row "pattern".
static Object Cursor.findValue(Table table, Column column, Column columnPattern, Object valuePattern)
          Convenience method for finding a specific row in a table which matches a given row "pattern".
static Object Cursor.findValue(Table table, Index index, Column column, Column columnPattern, Object valuePattern)
          Convenience method for finding a specific row in a table which matches a given row "pattern".
 List<Relationship> Database.getRelationships(Table table1, Table table2)
          Finds all the relationships in the database between the given tables.
 

Constructors in com.healthmarketscience.jackcess with parameters of type Table
BigIndex(Table table, int uniqueEntryCount, int uniqueEntryCountOffset)
           
Column(Table table, ByteBuffer buffer, int offset)
          Read a column definition in from a buffer
CursorBuilder(Table table)
           
Relationship(String name, Table fromTable, Table toTable, int flags, int numCols)
           
SimpleIndex(Table table, int uniqueEntryCount, int uniqueEntryCountOffset)
           
 



Copyright © 2005-2008 Health Market Science. All Rights Reserved.