Uses of Class
com.invirgance.convirgance.jdbc.schema.Column
Packages that use Column
Package
Description
Provides classes that represent different database schema objects.
SQL statement builder framework for constructing SQL queries.
-
Uses of Column in com.invirgance.convirgance.jdbc.schema
Methods in com.invirgance.convirgance.jdbc.schema that return ColumnModifier and TypeMethodDescriptionTable.ForeignKey.getColumn()Returns the foreign key column.Table.PrimaryKey.getColumn()Obtain the primary keyColumn.Returns the column with the provided name.Column[]Table.ForeignKey.getColumns()Returns the list of columns in the foreign keyColumn[]Table.PrimaryKey.getColumns()Obtain the primary key columns.Column[]TabularStructure.getColumns()Returns all columns of this object.Table.ForeignKey.getTargetKey()Column[]Table.ForeignKey.getTargetKeys()The keys referenced by the foreign key, typically the primary keys of the target table.Constructors in com.invirgance.convirgance.jdbc.schema with parameters of type ColumnModifierConstructorDescriptionPrimaryKey(Column[] columns, com.invirgance.convirgance.json.JSONObject[] records) -
Uses of Column in com.invirgance.convirgance.jdbc.sql
Methods in com.invirgance.convirgance.jdbc.sql that return ColumnMethods in com.invirgance.convirgance.jdbc.sql with parameters of type ColumnModifier and TypeMethodDescriptionAdds a column to the select query.Adds a column to the select clause with the specified result set nameAdds a column to the SQL query.WhereStatement.equals(Column column, BindVariable value) WhereStatement.filter(Column column, ComparisonOperator operator, Column value) WhereStatement.filter(Column column, ComparisonOperator operator, BindVariable value) WhereStatement.filter(Column column, ComparisonOperator operator, Object value) WhereStatement.greaterThan(Column column, Column value) WhereStatement.greaterThan(Column column, BindVariable value) WhereStatement.greaterThan(Column column, Object value) WhereStatement.greaterThanOrEquals(Column column, Column value) WhereStatement.greaterThanOrEquals(Column column, BindVariable value) WhereStatement.greaterThanOrEquals(Column column, Object value) WhereStatement.lessThan(Column column, BindVariable value) WhereStatement.lessThanOrEquals(Column column, Column value) WhereStatement.lessThanOrEquals(Column column, BindVariable value) WhereStatement.lessThanOrEquals(Column column, Object value) WhereStatement.notEquals(Column column, BindVariable value) Sets a columns ordering to ascending.Sets a columns ordering.Constructors in com.invirgance.convirgance.jdbc.sql with parameters of type ColumnModifierConstructorDescriptionColumnExpressionStatement(DatabaseSchemaLayout layout, Column column) Creates a column expression that can be used in SQL statements like SELECT, WHERE, etc.ColumnExpressionStatement(DatabaseSchemaLayout layout, Column column, String name) Creates a column expression with an alias (for "AS" clauses in SELECT statements).