Uses of Class
com.invirgance.convirgance.jdbc.schema.DatabaseSchemaLayout
Packages that use DatabaseSchemaLayout
Package
Description
Provides classes for managing JDBC data sources.
Provides classes that represent different database schema objects.
SQL statement builder framework for constructing SQL queries.
-
Uses of DatabaseSchemaLayout in com.invirgance.convirgance.jdbc
Methods in com.invirgance.convirgance.jdbc that return DatabaseSchemaLayoutModifier and TypeMethodDescriptionStoredConnection.getSchemaLayout()Returns the DatabaseSchemaLayout from this connection's driver and data source. -
Uses of DatabaseSchemaLayout in com.invirgance.convirgance.jdbc.datasource
Methods in com.invirgance.convirgance.jdbc.datasource that return DatabaseSchemaLayout -
Uses of DatabaseSchemaLayout in com.invirgance.convirgance.jdbc.schema
Constructors in com.invirgance.convirgance.jdbc.schema with parameters of type DatabaseSchemaLayoutModifierConstructorDescriptionView(com.invirgance.convirgance.json.JSONObject record, DatabaseSchemaLayout layout, Schema schema) -
Uses of DatabaseSchemaLayout in com.invirgance.convirgance.jdbc.sql
Constructors in com.invirgance.convirgance.jdbc.sql with parameters of type DatabaseSchemaLayoutModifierConstructorDescriptionBindExpressionStatement(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.ColumnExpressionStatement(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).Creates an empty comparison statement with just the database layout.ComparisonOperatorStatement(DatabaseSchemaLayout layout, ExpressionStatement left, ComparisonOperator operator, ExpressionStatement right) Creates a complete comparison statement ready for use in WHERE clauses.FromStatement(DatabaseSchemaLayout layout, TabularStructure table) Creates the from statement using the provided layout andTabularStructure.FromStatement(DatabaseSchemaLayout layout, TabularStructure table, String name) Creates the from statement using the provided layout andTabularStructure.Creates the statement with only the layout...IsNotNullComparisonStatement(DatabaseSchemaLayout layout, ExpressionStatement expression) Creates the statement with the provided database layout and expression.Creates the statement using the provided database layout.IsNullComparisonStatement(DatabaseSchemaLayout layout, ExpressionStatement expression) Creates the statement using the provided layout and expression.LiteralExpressionStatement(DatabaseSchemaLayout layout, Object literal) LiteralExpressionStatement(DatabaseSchemaLayout layout, Object literal, String name) OrderByStatement(DatabaseSchemaLayout layout) Creates a new statement.SelectStatement(DatabaseSchemaLayout layout) Creates a new Statement using the provided database layout.WhereStatement(DatabaseSchemaLayout layout)