Uses of Class
ru.curs.celesta.dbutils.query.FromClause
-
Packages that use FromClause Package Description ru.curs.celesta.dbutils.adaptors Adaptors for various RDBMS.ru.curs.celesta.dbutils.stmt Classes for work with prepared statements. -
-
Uses of FromClause in ru.curs.celesta.dbutils.adaptors
Methods in ru.curs.celesta.dbutils.adaptors with parameters of type FromClause Modifier and Type Method Description abstract PreparedStatementDBAdaptor. getNavigationStatement(Connection conn, FromClause from, String orderBy, String navigationWhereClause, Set<String> fields, long offset)Returns navigable PreparedStatement by a filtered set of records.PreparedStatementFirebirdAdaptor. getNavigationStatement(Connection conn, FromClause from, String orderBy, String navigationWhereClause, Set<String> fields, long offset)PreparedStatementMSSQLAdaptor. getNavigationStatement(Connection conn, FromClause from, String orderBy, String navigationWhereClause, Set<String> fields, long offset)PreparedStatementOpenSourceDbAdaptor. getNavigationStatement(Connection conn, FromClause from, String orderBy, String navigationWhereClause, Set<String> fields, long offset)PreparedStatementOraAdaptor. getNavigationStatement(Connection conn, FromClause from, String orderBy, String navigationWhereClause, Set<String> fields, long offset)PreparedStatementDBAdaptor. getRecordSetStatement(Connection conn, FromClause from, String whereClause, String orderBy, long offset, long rowCount, Set<String> fields)ReturnsPreparedStatementcontaining a filtered set of entries.PreparedStatementDBAdaptor. getSetCountStatement(Connection conn, FromClause from, String whereClause)Builds a SELECT COUNT statement. -
Uses of FromClause in ru.curs.celesta.dbutils.stmt
Method parameters in ru.curs.celesta.dbutils.stmt with type arguments of type FromClause Modifier and Type Method Description static PreparedStmtHolderPreparedStatementHolderFactory. createFindSetHolder(DBAdaptor dbAdaptor, Connection conn, Supplier<FromClause> fromClauseSupplier, Supplier<FromTerm> fromTermSupplier, Supplier<WhereTerm> whereTermSupplier, Supplier<String> orderBySupplier, Supplier<Long> offsetSupplier, Supplier<Long> rowCountSupplier, Supplier<Set<String>> fieldsForStatementSupplier)
-