Uses of Class
org.apache.empire.db.DBColumnExpr
Packages that use DBColumnExpr
Package
Description
This package contains the core Empire-DB implementation classes.
This package contains SQL-generator classes for column expressions.
This package contains SQL-generator classes for compare expressions used in the where and having clause.
This package contains SQL-generator classes for join expressions used in the from clause.
This package contains classes necessary to support the Apache Derby database system.
This package contains classes necessary to support the H2 database system.
This package contains classes necessary to support the HSQLDB database system.
This package contains classes necessary to support the MySQL database system.
This package contains classes necessary to support the Oracle database system.
This package contains classes necessary to support the PostgreSQL database system.
This package contains classes necessary to support the Microsoft SQL-Server database system.
-
Uses of DBColumnExpr in org.apache.empire.db
Subclasses of DBColumnExpr in org.apache.empire.dbModifier and TypeClassDescriptionclassThis is the base class for all database columns that have a physical representation.protected static classThis class wraps a column of sql command in a special command column object.classclassThis class represent one column of a table.static classDBViewColumnFields in org.apache.empire.db declared as DBColumnExprModifier and TypeFieldDescriptionprotected final DBColumnExprDBQueryColumn.exprprotected final DBColumnExprDBView.DBViewColumn.exprprotected final DBColumnExpr[]DBQuery.queryColumnsFields in org.apache.empire.db with type parameters of type DBColumnExprModifier and TypeFieldDescriptionprotected List<DBColumnExpr>DBCommand.groupByprotected List<DBColumnExpr>DBCommand.selectMethods in org.apache.empire.db with type parameters of type DBColumnExprModifier and TypeMethodDescription<T extends DBColumnExpr>
TDBColumnExpr.setBeanPropertyName(String propertyName) Sets the Java bean property name for this column.final <T extends DBColumnExpr>
TDBColumnExpr.setControlType(String controlType) Sets the controlType attribute.<T extends DBColumnExpr>
TDBColumnExpr.setDefaultSortOrder(Boolean descending) Sets the default sort order<T extends DBColumnExpr>
TDBColumnExpr.setOptions(Options options) Sets the options for this column indicating all valid values.<T extends DBColumnExpr>
TSets the title attribute.Methods in org.apache.empire.db that return DBColumnExprModifier and TypeMethodDescriptionfinal DBColumnExprCreates and returns a function from an sql template The template may consist of the following placeholders: ?DBRowSet.count()Returns a new DBCountExpr object.DBColumn.decodeEnum()Creates and returns a sql-expression that maps enum values by name or ordinal to their string representationDBColumn.decodeSort(boolean defaultToEnd) Creates and returns a sql-expression that maps enum values from name to ordinalfinal DBColumnExprCreates and returns a function from an sql template The template may consist of the following placeholders: ?protected DBColumnExprDBCommandExpr.getCmdColumn(DBColumnExpr col) wraps a column expression such that is specific for to this command and detached from its source.DBReader.getColumn(int iColumn) Get the column Expression at positionprotected DBColumnExprDBQuery.getColumnExprAt(int index) protected DBColumnExprDBRowSet.getColumnExprAt(int index) Returns the column expression at a given column index Allow overrides in derived classesprotected final DBColumnExpr[]DBReader.getColumnExprList()Access the column expression listDBQueryColumn.getExpr()DBExpressionIndex.getExpressions()Returns the columnExpressions belonging to this index.DBIndex.getExpressions()Returns the columnExpressions belonging to this index.DBColumnExpr.getIgnoreCaseExpr()Returns an expression which ignores the case Only for case sensitive columns!DBDatabase.getIgnoreCaseExpr(DBColumnExpr columnExpr) Returns an expression that ignores the case of a column expression This is only called for case sensitive column expressions (expr.isCaseSensitive()) Default is upper(expr)DBColumn.getNormalizedColumn()Returns the normalized column for the columnExpr (if any)DBQuery.getQueryColumnExpr(int columnIndex) Returns the query column expression at a given indexDBQuery.getQueryColumnExprs()Returns the select expressions of the underlying queryDBCombinedCmd.getSelectExprList()Calls the method dbDBCommandExpr.getSelectExprList from the private variable 'left'.DBCommand.getSelectExprList()Returns an array of all select expressionsabstract DBColumnExpr[]DBCommandExpr.getSelectExprList()Returns the list of all select expressions as an array Used internally onlyDBColumn.getSortExpr()Returns the sort expression for a given column If no sort expression is explicitly set then the column itself is returned The returned expression should be assigned to an DBCommand.orderBy() function.DBView.DBViewColumn.getSourceColumnExpr()Deprecated.Outdated oracle syntax - use coalesce insteadDBColumnExpr.parenthesis()Creates and returns a function object which encloses the current expression in parenthesis.DBColumn.reference()Returns a reference expression for this column This can be used to reference a parent column in a subqueryDBCommandExpr.result()Returns a ColumnExpr for the result of the query If the command must have exactly one select column otherwise a NotSupportedException is thrown;Methods in org.apache.empire.db that return types with arguments of type DBColumnExprModifier and TypeMethodDescriptionDBCommand.getGroupBy()Returns a copy of the defined where clauses.DBCombinedCmd.getSelectExpressions()Returns all select expressions as unmodifiable listDBCommand.getSelectExpressions()Returns all select expressions as unmodifiable listabstract List<DBColumnExpr>DBCommandExpr.getSelectExpressions()returns a list of expressions for the SELECT part of the sql statementMethods in org.apache.empire.db with parameters of type DBColumnExprModifier and TypeMethodDescriptionprotected final DBView.DBViewColumnDBView.addColumn(String columnName, DBColumnExpr columnExpr) Adds a column to the view.final DBCmdParamDBCommand.addParam(DBColumnExpr colExpr, Object value) Adds an command parameter which will be used in a prepared statement.protected voidDBDDLGenerator.appendIndexColumn(DBIndex index, DBColumnExpr idxColumn, DBSQLBuilder sql) Appends an column expression to an indexDBDatabase.caseMap(DBColumnExpr column, Object cmpValue, Object trueValue, Object falseValue) Creates a SQL case expression in the form "case [Expr] when [compareValue] then [trueValue] else [elseValue] end"DBDatabase.caseMap(DBColumnExpr column, Map<? extends Object, ? extends Object> valueMap, Object elseValue) Creates a SQL case expression in the form "case [Expr] when [mapKey] then [mapValue] else [elseValue] end"DBDatabase.caseMap(DBColumnExpr column, Options options, Object elseValue) Creates a SQL case expression in the form "case [Expr] when [optionValue] then [optionText] else [elseValue] end"DBDatabase.caseWhenNull(DBColumnExpr column, Object trueValue, Object falseValue) Creates a SQL case expression that check whether a column or column expression is null "case when [condition] is null then [trueValue] else [falseValue] end" This is a helper function to simplify client usageDBQuery.column(DBColumnExpr expr) Returns the query column for a underlying column expression Use this function to map table columns to query columnsDBColumnExpr.concat(String separator, DBColumnExpr... concatExprs) concatenates a list of expressions to the current columnDBColumnExpr.concat(DBColumnExpr... concatExprs) concatenates a list of expressions to the current columnprotected DBView.DBViewColumnDBView.createAndAppendColumn(String columnName, DBColumnExpr sourceExpression, double size) Adds a column to the view.protected DBQueryColumnDBQuery.createQueryColumn(DBColumnExpr expr, int index) factory method for column expressions in order to allow overridesDBQuery.findColumn(DBColumnExpr expr) Deprecated.protected DBCompareExprDBCommand.findConstraintOn(List<DBCompareExpr> list, DBColumnExpr colExpr) finds a constraint on a particular column to the 'where' or 'having' collectionsDBView.findViewColumn(DBColumnExpr expr) This function searches for equal columns given by the specified DBColumnExpr object.protected DBColumnExprDBCommandExpr.getCmdColumn(DBColumnExpr col) wraps a column expression such that is specific for to this command and detached from its source.Class<?>DBDatabase.getColumnJavaType(DBColumnExpr expr) Returns the java class type for a given dataTypeDBDatabase.getIgnoreCaseExpr(DBColumnExpr columnExpr) Returns an expression that ignores the case of a column expression This is only called for case sensitive column expressions (expr.isCaseSensitive()) Default is upper(expr)protected StringDBCommandExpr.getInsertInto(DBTable table, DBColumnExpr[] select, List<DBColumnExpr> columns) Create the insert into SQL-Command which copies data from a select statement to a destination table.DBCommand.groupBy(DBColumnExpr columnExpr) Adds a column expression to the Group By clause of an sql statement.final DBCommandDBCommand.groupBy(DBColumnExpr... exprs) Adds a list of columns to the Group By clause of an sql statement.booleanDBCommand.hasHavingConstraintOn(DBColumnExpr col) Checks whether the command has a constraint on a particular column expressionbooleanDBCombinedCmd.hasSelectExpr(DBColumnExpr expr) returns whether or not the command has a specific select expressionbooleanDBCommand.hasSelectExpr(DBColumnExpr expr) returns whether or not the command has a specific select expressionabstract booleanDBCommandExpr.hasSelectExpr(DBColumnExpr expr) returns whether or not the command has a specific select expressionbooleanDBCommand.hasWhereConstraintOn(DBColumnExpr col) Checks whether the command has a constraint on a particular column expressionprotected voidDBReader.init(DBDatabase db, DBColumnExpr[] columns, ResultSet rset) Initialize the reader from an open JDBC-ResultSetfinal DBCommandDBCommand.join(DBColumnExpr left, DBColumn right, DBJoinType joinType, DBCompareExpr... addlConstraints) Adds a join based on two columns to the list of join expressions.final DBCommandDBCommand.join(DBColumnExpr left, DBColumn right, DBCompareExpr... addlConstraints) Adds an inner join based on two columns to the list of join expressions.final DBCommandDBCommand.joinLeft(DBColumnExpr left, DBColumn right, DBCompareExpr... addlConstraints) Adds a left join based on two columns to the list of join expressions.final DBCommandDBCommand.joinRight(DBColumnExpr left, DBColumn right, DBCompareExpr... addlConstraints) Adds a right join based on two columns to the list of join expressions.DBColumnExpr.on(DBColumnExpr joinWith) create a join expression for DBCommand.join()DBCommand.orderBy(DBColumnExpr... exprs) Overridden to change return type from DBCommandExpr to DBCommandDBCommand.orderBy(DBColumnExpr expr, boolean desc) Overridden to change return type from DBCommandExpr to DBCommandDBCommandExpr.orderBy(DBColumnExpr... exprs) Adds a list of columns to the orderBy clause in ascending orderDBCommandExpr.orderBy(DBColumnExpr expr, boolean desc) Adds an order by with ascending or descending orderDBCommand.orderByUpper(DBColumnExpr... expr) Overridden to change return type from DBCommandExpr to DBCommandDBCommand.orderByUpper(DBColumnExpr expr, boolean desc) Overridden to change return type from DBCommandExpr to DBCommandDBCommandExpr.orderByUpper(DBColumnExpr... exprs) Adds a list of columns to the orderBy clause in ascending orderDBCommandExpr.orderByUpper(DBColumnExpr expr, boolean desc) Adds a case insensitive order by with ascending or descending orderprotected DBCompareExprDBCommand.removeConstraintOn(List<DBCompareExpr> list, DBColumnExpr colExpr) removes a constraint on a particular column to the 'where' or 'having' collectionsDBCommand.removeHavingConstraintOn(DBColumnExpr col) removes a constraint on a particular column from the having clausevoidDBCommand.removeSelect(DBColumnExpr... exprs) removes one or more expressions from the Select expression listDBCommand.removeWhereConstraintOn(DBColumnExpr col) removes a constraint on a particular column from the where clausevoidDBCommand.replaceSelect(DBColumnExpr replExpr, DBColumnExpr replWith) replaces a select expression with another or removes a select expression In order to remove the expression, set the replWith parameter to null If the replace expression is not found, an ItemNotFoundException is thrownDBCommand.select(DBColumnExpr expr) Adds a DBColumnExpr object to the Select collectionfinal DBCommandDBCommand.select(DBColumnExpr... exprs) Adds a list of columns to the select phrase of an sql statement.DBCommand.selectQualified(DBColumnExpr... columns) Adds a list of columns with their qualified name to the select phrase of an sql statement.<T extends Column>
TDBColumn.setNormalizedColumn(DBColumnExpr normalizedColumn) Sets a normalized columnExpr for this columnExpr<T extends DBColumn>
TDBColumn.setSortExpr(DBColumnExpr sortExpression) Sets a sort function expression for a given columnprotected booleanDBCommand.useCmdParam(DBColumnExpr col, Object value) returns true if a cmdParam should be used for the given column or false otherwiseMethod parameters in org.apache.empire.db with type arguments of type DBColumnExprModifier and TypeMethodDescriptionprotected <T> DBBeanListFactory<T>DBUtils.createDefaultBeanListFactory(Class<T> beanType, Column[] keyColumns, List<? extends DBColumnExpr> selectColumns) Crates a default DBBeanListFactory for Java bean class The DBRecord class must provide either a standard construtor with correspondig property set fundtions or a constructor using the fields of the queryfinal StringDBCommandExpr.getInsertInto(DBTable table, List<DBColumnExpr> columns) Create the insert into SQL-Command which copies data from a select statement to a destination table.protected StringDBCommandExpr.getInsertInto(DBTable table, DBColumnExpr[] select, List<DBColumnExpr> columns) Create the insert into SQL-Command which copies data from a select statement to a destination table.final DBCommandDBCommand.groupBy(Collection<? extends DBColumnExpr> columns) Adds a collection of columns to the Group By clause of an sql statement.final DBCommandDBCommand.select(Collection<? extends DBColumnExpr> columns) Adds a collection of columns to the select phrase of an sql statement.final DBCommandDBCommand.selectQualified(Collection<? extends DBColumnExpr> columns) Adds a collection of columns to the select phrase of an sql statement.Constructors in org.apache.empire.db with parameters of type DBColumnExprModifierConstructorDescriptionDBCmdColumn(DBRowSet query, DBColumnExpr expr) Constructs a new DBCmdColumn objectDBCmdQuery(DBCommandExpr cmd, DBDatabase db, DBColumnExpr[] exprList) Creates a new DBCmdQueryObjectDBExpressionIndex(String name, boolean unique, DBColumnExpr... columnExpressions) Constructs a DBExpresionIndexDBExpressionIndex(String name, DBIndex.DBIndexType type, DBColumnExpr... columnExpressions) Constructs a DBExpresionIndexDBQueryColumn(DBQuery query, String name, DBColumnExpr expr) Constructs a DBQueryColumn object set the specified parameters to this object.protectedDBViewColumn(DBView view, String name, DBColumnExpr expr, double size) Constructs a DBViewColumn object set the specified parameters to this object. -
Uses of DBColumnExpr in org.apache.empire.db.expr.column
Subclasses of DBColumnExpr in org.apache.empire.db.expr.columnModifier and TypeClassDescriptionclassThis implements some basic functionality for SQL functions based on a column expressionclassThis class allows column renaming in SQL.classThis class is used for performing calculations in SQL
It handles the mathematical operations ("+", "-", "*", "/") for the current column.classThis class represents a SQL case expression like "case when ?classThis class is used to create a SQL CASE constraint in the form of case {expr} when {value1} then {result1} when {value2} then {result2} ...classThis class is used to create a SQL CASE constraint in the form of case when {cond1} then {result1} when {cond2} then {result2} ...classclassclassThis class is used for performing string concatenation in SQLclassDBConcatExpressionclassThis class is used to convert a value to a different data type.classThis class is used to add the "count" statement to the SQL-Command.classThis class is used to decode a set of keys to the corresponding target values.classThis class is used for performing various SQL functions on a column or column expression.classThis class allows column renaming in SQL.classThis class is used for declaring scalar functions in SQL (like e.g. random).classThis class is used for declaring constant values in SQL.classFields in org.apache.empire.db.expr.column declared as DBColumnExprModifier and TypeFieldDescriptionprotected final DBColumnExprDBAbstractFuncExpr.exprprotected final DBColumnExprDBConcatExpr.leftMethods in org.apache.empire.db.expr.column that return DBColumnExprModifier and TypeMethodDescriptionDBValueExpr.getIgnoreCaseExpr(DBColumnExpr context) Returns an expression which ignores the case Only for case sensitive columns!protected DBColumnExprDBCaseExpr.getSourceColumnExpr(Collection<?> values, Object elseValue) DBAliasExpr.unwrap()Returns the underlying column expression.DBCoalesceExpr.unwrap()DBParenthesisExpr.unwrap()Returns the underlying column expression.Methods in org.apache.empire.db.expr.column with parameters of type DBColumnExprModifier and TypeMethodDescriptionDBValueExpr.getIgnoreCaseExpr(DBColumnExpr context) Returns an expression which ignores the case Only for case sensitive columns!Constructors in org.apache.empire.db.expr.column with parameters of type DBColumnExprModifierConstructorDescriptionDBAbstractFuncExpr(DBColumnExpr expr, boolean isAggregate, DataType dataType) Constructs a new DBFuncExpr object set the specified parameters to this object.DBAliasExpr(DBColumnExpr expr, String alias) Constructs a DBAliasExpr object combine the DBColumnExpr object with the alias name.DBCalcExpr(DBColumnExpr expr, String op, Object value) Constructs a DBCalcExpr object Sets the mathematical operations ("+", "-", "*", "/")
for the specified DBColumnExpr object and value.protectedDBCaseExpr(DBColumnExpr caseExpr) DBCaseMapExpr(DBColumnExpr caseExpr, Object cmpVal, Object trueValue, Object elseValue) DBCaseMapExpr(DBColumnExpr caseExpr, Object cmpVal1, Object trueValue1, Object cmpVal2, Object trueValue2, Object elseValue) DBCaseMapExpr(DBColumnExpr caseExpr, Map<? extends Object, ? extends Object> valueMap, Object elseValue) constructs a DBCaseSelectExpr exprDBCoalesceExpr(DBColumnExpr expr, Object nullValue) DBConcatExpr(DBColumnExpr left, Object right) Constructs a new DBConcatExpr object set the specified parameters to this object.DBConcatFuncExpr(DBColumnExpr first, String separator, DBColumnExpr... others) create concat expressionDBConcatFuncExpr(DBColumnExpr first, DBColumnExpr... others) create concat expressionDBConvertExpr(DBColumnExpr expr, DataType dataType, Object format) Constructs a DBDecodeExprDBCountExpr(DBColumnExpr expr, boolean distinct) Constructs a DBCountExpr.DBDecodeExpr(DBColumnExpr expr, Map<?, ?> valueMap, Object elseExpr, DataType dataType) Constructs a DBDecodeExprDBFuncExpr(DBColumnExpr expr, String template, Object[] params, boolean isAggregate, DataType dataType) Constructs a new DBFuncExpr object set the specified parameters to this object.DBFuncExpr(DBColumnExpr expr, DBSqlPhrase phrase, Object[] params, DataType dataType) Constructs a new DBFuncExpr object set the specified parameters to this object.Constructs a DBAliasExpr object combine the DBColumnExpr object with the alias name.DBVarArgsFuncExpr(DBDatabase db, DataType dataType, String template, DBColumnExpr... cols) -
Uses of DBColumnExpr in org.apache.empire.db.expr.compare
Fields in org.apache.empire.db.expr.compare declared as DBColumnExprMethods in org.apache.empire.db.expr.compare that return DBColumnExprMethods in org.apache.empire.db.expr.compare with parameters of type DBColumnExprModifier and TypeMethodDescriptionbooleanDBCompareAndOrExpr.isConstraintOn(DBColumnExpr colExpr) Returns whether the constraint is on the given columnbooleanDBCompareColExpr.isConstraintOn(DBColumnExpr colExpr) Returns whether the constraint is on the given columnabstract booleanDBCompareExpr.isConstraintOn(DBColumnExpr colExpr) booleanDBCompareNotExpr.isConstraintOn(DBColumnExpr colExpr) Returns whether the constraint is on the given columnbooleanDBCompareParenthesisExpr.isConstraintOn(DBColumnExpr colExpr) booleanDBExistsExpr.isConstraintOn(DBColumnExpr colExpr) Returns whether the constraint is on the given columnConstructors in org.apache.empire.db.expr.compare with parameters of type DBColumnExprModifierConstructorDescriptionDBCompareColExpr(DBColumnExpr expr, DBCmpType op, Object value) Constructs a DBCompareColExpr object set the specified parameters to this object. -
Uses of DBColumnExpr in org.apache.empire.db.expr.join
Fields in org.apache.empire.db.expr.join declared as DBColumnExprModifier and TypeFieldDescriptionprotected DBColumnExprDBColumnJoinExpr.leftprotected DBColumnExprDBColumnJoinExpr.rightMethods in org.apache.empire.db.expr.join that return DBColumnExprModifier and TypeMethodDescriptionDBColumnJoinExpr.getLeft()returns the left join expressionDBColumnJoinExpr.getRight()returns the right join expressionMethods in org.apache.empire.db.expr.join with parameters of type DBColumnExprModifier and TypeMethodDescriptionDBColumnJoinExpr.and(DBColumnExpr c1, DBColumnExpr c2) This function adds an additional constraint to the join.Constructors in org.apache.empire.db.expr.join with parameters of type DBColumnExprModifierConstructorDescriptionDBColumnJoinExpr(DBColumnExpr left, DBColumnExpr right, DBJoinType type) DBColumnJoinExpr(DBColumnExpr left, DBColumnExpr right, DBJoinType type, DBCompareExpr addlConstraint) Constructs a join expression based on two columns or column expressions -
Uses of DBColumnExpr in org.apache.empire.db.expr.order
Fields in org.apache.empire.db.expr.order declared as DBColumnExprMethods in org.apache.empire.db.expr.order that return DBColumnExprConstructors in org.apache.empire.db.expr.order with parameters of type DBColumnExprModifierConstructorDescriptionDBOrderByExpr(DBColumnExpr expr, boolean desc) Construct a new DBOrderByInfo object set the specified parameters to this object. -
Uses of DBColumnExpr in org.apache.empire.db.list
Fields in org.apache.empire.db.list with type parameters of type DBColumnExprModifier and TypeFieldDescriptionprotected final List<? extends DBColumnExpr>DBBeanListFactoryImpl.constructorParamsprotected final List<? extends DBColumnExpr>DBBeanListFactoryImpl.setterColumnsMethod parameters in org.apache.empire.db.list with type arguments of type DBColumnExprModifier and TypeMethodDescriptionprotected static <T> Constructor<T>DBBeanListFactoryImpl.findBeanConstructor(Class<T> beanType, List<? extends DBColumnExpr> params) Finds a suitable constructor for the beanClassConstructor parameters in org.apache.empire.db.list with type arguments of type DBColumnExprModifierConstructorDescriptionDBBeanListFactoryImpl(Class<T> beanType, List<? extends DBColumnExpr> selectColumns) Constructs a DBRecordListFactoryImpl based on an DBRecord classprotectedDBBeanListFactoryImpl(Class<T> beanType, List<? extends DBColumnExpr> keyColumns, List<? extends DBColumnExpr> selectColumns) Constructs a DBRecordListFactoryImpl based on an DBRecord classDBBeanListFactoryImpl(Class<T> beanType, Column[] keyColumns, List<? extends DBColumnExpr> selectColumns) Constructs a DBRecordListFactoryImpl based on an DBRecord classDBBeanListFactoryImpl(Constructor<T> constructor, List<? extends DBColumnExpr> constructorParams, List<? extends DBColumnExpr> setterColumns) Constructs a DBRecordListFactoryImpl based on an DBRecord constructor -
Uses of DBColumnExpr in org.apache.empire.dbms
Methods in org.apache.empire.dbms that return DBColumnExprModifier and TypeMethodDescriptionDBMSHandler.getIgnoreCaseExpr(DBColumnExpr columnExpr) Returns an expression that ignores the case of a column expression This is only called for case sensitive column expressions (expr.isCaseSensitive()) Default is upper(expr)DBMSHandlerBase.getIgnoreCaseExpr(DBColumnExpr expr) Returns an expression that ignores the case of a column expression Only for text columns.abstract DBColumnExprDBMSHandlerBase.getNextSequenceValueExpr(DBTableColumn column) Returns an expression for creating a sequence value.Methods in org.apache.empire.dbms with parameters of type DBColumnExprModifier and TypeMethodDescriptionDBMSHandler.getIgnoreCaseExpr(DBColumnExpr columnExpr) Returns an expression that ignores the case of a column expression This is only called for case sensitive column expressions (expr.isCaseSensitive()) Default is upper(expr)DBMSHandlerBase.getIgnoreCaseExpr(DBColumnExpr expr) Returns an expression that ignores the case of a column expression Only for text columns. -
Uses of DBColumnExpr in org.apache.empire.dbms.derby
Methods in org.apache.empire.dbms.derby that return DBColumnExprModifier and TypeMethodDescriptionDBMSHandlerDerby.getNextSequenceValueExpr(DBTableColumn column) -
Uses of DBColumnExpr in org.apache.empire.dbms.h2
Methods in org.apache.empire.dbms.h2 that return DBColumnExpr -
Uses of DBColumnExpr in org.apache.empire.dbms.hsql
Methods in org.apache.empire.dbms.hsql that return DBColumnExpr -
Uses of DBColumnExpr in org.apache.empire.dbms.mysql
Methods in org.apache.empire.dbms.mysql that return DBColumnExprModifier and TypeMethodDescriptionDBMSHandlerMySQL.getNextSequenceValueExpr(DBTableColumn column) -
Uses of DBColumnExpr in org.apache.empire.dbms.oracle
Subclasses of DBColumnExpr in org.apache.empire.dbms.oracleModifier and TypeClassDescriptionclassimplements a column expression for the Oracle rownum functionMethods in org.apache.empire.dbms.oracle that return DBColumnExprModifier and TypeMethodDescriptionDBMSHandlerOracle.getNextSequenceValueExpr(DBTableColumn column) Methods in org.apache.empire.dbms.oracle with parameters of type DBColumnExprModifier and TypeMethodDescriptionprotected voidOracleDDLGenerator.appendIndexColumn(DBIndex index, DBColumnExpr idxColumn, DBSQLBuilder sql) -
Uses of DBColumnExpr in org.apache.empire.dbms.postgresql
Subclasses of DBColumnExpr in org.apache.empire.dbms.postgresqlModifier and TypeClassDescriptionclassclassclassMethods in org.apache.empire.dbms.postgresql that return DBColumnExprModifier and TypeMethodDescriptionDBMSHandlerPostgreSQL.getNextSequenceValueExpr(DBTableColumn column) DBCommandPostgres.pgAge(DBColumnExpr expr) See https://www.postgresql.org/docs/current/functions-datetime.htmlDBCommandPostgres.pgAge(DBColumnExpr expr1, DBColumnExpr expr2) See https://www.postgresql.org/docs/current/functions-datetime.htmlDBCommandPostgres.pgBoolAnd(DBCompareExpr cmpExpr) See https://www.postgresql.org/docs/current/textsearch-controls.htmlDBCommandPostgres.pgBoolOr(DBCompareExpr cmpExpr) See https://www.postgresql.org/docs/current/textsearch-controls.htmlDBCommandPostgres.pgExtract(PostgresExtractField field, DBColumnExpr expr) See https://www.postgresql.org/docs/current/functions-datetime.htmlDBCommandPostgres.pgPlaintoTsquery(DBColumnExpr expr) See https://www.postgresql.org/docs/current/textsearch-controls.htmlDBCommandPostgres.pgToTsquery(DBColumnExpr expr) See https://www.postgresql.org/docs/current/textsearch-controls.htmlDBCommandPostgres.pgToTsvector(DBColumnExpr expr) See https://www.postgresql.org/docs/current/textsearch-controls.htmlDBCommandPostgres.pgWebsearchToTsquery(DBColumnExpr expr) See https://www.postgresql.org/docs/current/textsearch-controls.htmlMethods in org.apache.empire.dbms.postgresql with parameters of type DBColumnExprModifier and TypeMethodDescriptionbooleanPostgresAtAt.isConstraintOn(DBColumnExpr colExpr) DBCommandPostgres.pgAge(DBColumnExpr expr) See https://www.postgresql.org/docs/current/functions-datetime.htmlDBCommandPostgres.pgAge(DBColumnExpr expr1, DBColumnExpr expr2) See https://www.postgresql.org/docs/current/functions-datetime.htmlDBCommandPostgres.pgCompareAtAt(DBColumnExpr left, DBColumnExpr right) See https://www.postgresql.org/docs/current/textsearch-controls.htmlDBCommandPostgres.pgExtract(PostgresExtractField field, DBColumnExpr expr) See https://www.postgresql.org/docs/current/functions-datetime.htmlDBCommandPostgres.pgPlaintoTsquery(DBColumnExpr expr) See https://www.postgresql.org/docs/current/textsearch-controls.htmlDBCommandPostgres.pgToTsquery(DBColumnExpr expr) See https://www.postgresql.org/docs/current/textsearch-controls.htmlDBCommandPostgres.pgToTsvector(DBColumnExpr expr) See https://www.postgresql.org/docs/current/textsearch-controls.htmlDBCommandPostgres.pgWebsearchToTsquery(DBColumnExpr expr) See https://www.postgresql.org/docs/current/textsearch-controls.htmlConstructors in org.apache.empire.dbms.postgresql with parameters of type DBColumnExprModifierConstructorDescriptionPostgresAtAt(DBColumnExpr left, DBColumnExpr right) PostgresFuncExpr(DBColumnExpr expr, PostgresSqlPhrase phrase, Object[] params, DataType dataType) -
Uses of DBColumnExpr in org.apache.empire.dbms.sqlite
Methods in org.apache.empire.dbms.sqlite that return DBColumnExprModifier and TypeMethodDescriptionDBMSHandlerSQLite.getNextSequenceValueExpr(DBTableColumn column) -
Uses of DBColumnExpr in org.apache.empire.dbms.sqlserver
Methods in org.apache.empire.dbms.sqlserver that return DBColumnExprModifier and TypeMethodDescriptionDBMSHandlerMSSQL.getNextSequenceValueExpr(DBTableColumn column)