Uses of Class
org.d2rq.db.schema.ColumnDef

Packages that use ColumnDef
org.d2rq.db.op   
org.d2rq.db.schema   
 

Uses of ColumnDef in org.d2rq.db.op
 

Constructor parameters in org.d2rq.db.op with type arguments of type ColumnDef
SQLOp(SQLConnection sqlConnection, String sql, List<ColumnDef> columns)
           
 

Uses of ColumnDef in org.d2rq.db.schema
 

Methods in org.d2rq.db.schema that return ColumnDef
 ColumnDef TableDef.getColumnDef(Identifier columnName)
           
 

Methods in org.d2rq.db.schema that return types with arguments of type ColumnDef
 List<ColumnDef> Inspector.describeSelectStatement(String sqlQuery)
           
 List<ColumnDef> TableDef.getColumns()
           
 

Constructor parameters in org.d2rq.db.schema with type arguments of type ColumnDef
TableDef(TableName name, List<ColumnDef> columns, Key primaryKey, Set<Key> uniqueKeys, Set<ForeignKey> foreignKeys)