Uses of Class
com.googlecode.jdbw.metadata.Table

Packages that use Table
com.googlecode.jdbw.metadata   
 

Uses of Table in com.googlecode.jdbw.metadata
 

Methods in com.googlecode.jdbw.metadata that return Table
 Table MetaDataFactory.createTable(Schema schema, String tableName)
           
 Table DefaultMetaDataFactory.createTable(Schema schema, String tableName)
           
 Table Index.getTable()
           
 Table Column.getTable()
           
 Table Schema.getTable(String tableName)
          Creates and returns a Table object for a particular table.
 

Methods in com.googlecode.jdbw.metadata that return types with arguments of type Table
 Map<String,Table> Schema.getTableMap()
           
 List<Table> Schema.getTables()
           
 

Methods in com.googlecode.jdbw.metadata with parameters of type Table
 int Table.compareTo(Table o)
           
protected  Column MetaDataResolver.extractColumnFromMetaResult(ResultSet resultSet, Table table)
           
protected  void MetaDataResolver.extractIndexDataFromMetaResult(ResultSet resultSet, Map<String,Index> indexMap, Table table)
           
protected  List<Column> MetaDataResolver.getColumns(String catalogName, String schemaName, Table table)
           
protected  List<Index> MetaDataResolver.getIndexes(String catalogName, String schemaName, Table table)
           
 

Constructors in com.googlecode.jdbw.metadata with parameters of type Table
Column(int ordinalPosition, String columnName, int sqlType, String typeName, int columnSize, int decimalDigits, int nullable, String autoIncrement, Table table)
           
Index(String indexName, boolean unique, boolean clustered, boolean primaryKey, Table table, Column firstColumn)
           
 



Copyright © 2012. All Rights Reserved.