Uses of Class
com.invirgance.convirgance.jdbc.sql.BindVariable
Packages that use BindVariable
Package
Description
SQL statement builder framework for constructing SQL queries.
-
Uses of BindVariable in com.invirgance.convirgance.jdbc.sql
Methods in com.invirgance.convirgance.jdbc.sql that return BindVariableModifier and TypeMethodDescriptionBindExpressionStatement.getBind()Get theBindVariablefor this expression.Methods in com.invirgance.convirgance.jdbc.sql with parameters of type BindVariableModifier and TypeMethodDescriptionWhereStatement.equals(Column column, BindVariable value) WhereStatement.filter(Column column, ComparisonOperator operator, BindVariable value) WhereStatement.greaterThan(Column column, BindVariable value) WhereStatement.greaterThanOrEquals(Column column, BindVariable value) WhereStatement.isNotNull(BindVariable column) WhereStatement.isNull(BindVariable column) WhereStatement.lessThan(Column column, BindVariable value) WhereStatement.lessThanOrEquals(Column column, BindVariable value) WhereStatement.notEquals(Column column, BindVariable value) Constructors in com.invirgance.convirgance.jdbc.sql with parameters of type BindVariableModifierConstructorDescriptionBindExpressionStatement(DatabaseSchemaLayout layout, BindVariable bind) Creates a BindExpression from a BindVariable using the database metadata fromDatabaseSchemaLayout.BindExpressionStatement(DatabaseSchemaLayout layout, BindVariable bind, String name) Creates a BindExpression from a BindVariable using the database metadata fromDatabaseSchemaLayout, you can provide an optional name to reuse the bind variable under another name.