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

Packages that use Column
com.googlecode.jdbw   
com.googlecode.jdbw.metadata   
com.googlecode.jdbw.server   
com.googlecode.jdbw.server.h2   
com.googlecode.jdbw.server.sybase   
 

Uses of Column in com.googlecode.jdbw
 

Methods in com.googlecode.jdbw with parameters of type Column
 Object SQLDialect.safeType(Column targetColumn, Object object)
          Attempts to convert a particular value to an acceptable format.
 

Method parameters in com.googlecode.jdbw with type arguments of type Column
 String[] SQLDialect.getCreateTableStatement(String schemaName, String name, List<Column> columns, List<Index> indexes)
           
 

Uses of Column in com.googlecode.jdbw.metadata
 

Methods in com.googlecode.jdbw.metadata that return Column
protected  Column MetaDataResolver.extractColumnFromMetaResult(ResultSet resultSet, Table table)
           
 Column Index.getColumn(int index)
           
 Column Table.getColumn(int columnIndex)
          Retrieves a column by index the database
 Column Table.getColumn(String columnName)
          Looks up one column
 

Methods in com.googlecode.jdbw.metadata that return types with arguments of type Column
 Map<String,Column> Table.getColumnMap()
           
 List<Column> Index.getColumns()
           
 List<Column> Table.getColumns()
           
protected  List<Column> MetaDataResolver.getColumns(String catalogName, String schemaName, Table table)
           
 

Methods in com.googlecode.jdbw.metadata with parameters of type Column
 void Index.addColumn(Column column)
           
 int Column.compareTo(Column o)
           
 

Constructors in com.googlecode.jdbw.metadata with parameters of type Column
Index(String indexName, boolean unique, boolean clustered, boolean primaryKey, Table table, Column firstColumn)
           
 

Uses of Column in com.googlecode.jdbw.server
 

Methods in com.googlecode.jdbw.server with parameters of type Column
 Object DefaultSQLDialect.safeType(Column targetColumn, Object object)
           
 

Method parameters in com.googlecode.jdbw.server with type arguments of type Column
 String[] DefaultSQLDialect.getCreateTableStatement(String schemaName, String name, List<Column> columns, List<Index> indexes)
           
 

Uses of Column in com.googlecode.jdbw.server.h2
 

Method parameters in com.googlecode.jdbw.server.h2 with type arguments of type Column
 String[] H2SQLDialect.getCreateTableStatement(String schemaName, String name, List<Column> columns, List<Index> indexes)
           
 

Uses of Column in com.googlecode.jdbw.server.sybase
 

Method parameters in com.googlecode.jdbw.server.sybase with type arguments of type Column
 String[] SybaseASESQLDialect.getCreateTableStatement(String schemaName, String name, List<Column> columns, List<Index> indexes)
           
 



Copyright © 2012. All Rights Reserved.