Uses of Interface
com.invirgance.convirgance.jdbc.sql.SQLStatement
Packages that use SQLStatement
Package
Description
SQL statement builder framework for constructing SQL queries.
-
Uses of SQLStatement in com.invirgance.convirgance.jdbc.sql
Classes in com.invirgance.convirgance.jdbc.sql with type parameters of type SQLStatementSubinterfaces of SQLStatement in com.invirgance.convirgance.jdbc.sqlClasses in com.invirgance.convirgance.jdbc.sql that implement SQLStatementModifier and TypeClassDescriptionclassThis is used to create an expression with named bindings in a SQL query.classBooleanAndStatement<P extends WhereStatement>Creates a logical AND grouping in SQL, combining multiple conditions that all must be true.classBooleanNotStatement<P extends WhereStatement>Creates a logical NOT operator in SQL, negating the conditions it contains.classBooleanOrStatement<P extends WhereStatement>Creates a logical OR grouping in SQL.classRepresents a database column in SQL queries, with optional column aliasing (naming).classRepresents a binary comparison operation in SQL with a left expression, comparison operator, and right expression.classCreates the FROM clause for a SQL query with the providedTabularStructure.classRepresents the "IS NOT NULL" expression, for creating comparisons on expressions.classRepresents the SQL "IS NULL" comparison operator in conditions.classRepresents a literal value within an SQL expression.classCreates an OrderByStatement, this is used to add an order by clause.classRepresents a SQL SELECT statement builder.classWhereStatement<P extends SQLStatement>Methods in com.invirgance.convirgance.jdbc.sql that return SQLStatementModifier and TypeMethodDescriptionBooleanAndStatement.done()BooleanNotStatement.done()BooleanOrStatement.done()BindExpressionStatement.getParent()ColumnExpressionStatement.getParent()ComparisonOperatorStatement.getParent()FromStatement.getParent()IsNullComparisonStatement.getParent()LiteralExpressionStatement.getParent()OrderByStatement.getParent()default SQLStatementSQLStatement.getParent()If this statement is part of a larger statement, this returns the parent statement.WhereStatement.getParent()Methods in com.invirgance.convirgance.jdbc.sql with parameters of type SQLStatementModifier and TypeMethodDescriptionvoidBindExpressionStatement.setParent(SQLStatement parent) voidColumnExpressionStatement.setParent(SQLStatement parent) voidComparisonOperatorStatement.setParent(SQLStatement parent) voidFromStatement.setParent(SQLStatement parent) voidIsNullComparisonStatement.setParent(SQLStatement parent) voidLiteralExpressionStatement.setParent(SQLStatement parent) voidOrderByStatement.setParent(SQLStatement parent) default voidSQLStatement.setParent(SQLStatement parent) voidWhereStatement.setParent(SQLStatement parent) SQLRenderer.statement(SQLStatement statement) Adds a SQLStatement to the query.