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 PreparedStatement
DBAdaptor. getNavigationStatement(Connection conn, FromClause from, String orderBy, String navigationWhereClause, Set<String> fields, long offset)
Returns navigable PreparedStatement by a filtered set of records.PreparedStatement
FirebirdAdaptor. getNavigationStatement(Connection conn, FromClause from, String orderBy, String navigationWhereClause, Set<String> fields, long offset)
PreparedStatement
MSSQLAdaptor. getNavigationStatement(Connection conn, FromClause from, String orderBy, String navigationWhereClause, Set<String> fields, long offset)
PreparedStatement
OpenSourceDbAdaptor. getNavigationStatement(Connection conn, FromClause from, String orderBy, String navigationWhereClause, Set<String> fields, long offset)
PreparedStatement
OraAdaptor. getNavigationStatement(Connection conn, FromClause from, String orderBy, String navigationWhereClause, Set<String> fields, long offset)
PreparedStatement
DBAdaptor. getRecordSetStatement(Connection conn, FromClause from, String whereClause, String orderBy, long offset, long rowCount, Set<String> fields)
ReturnsPreparedStatement
containing a filtered set of entries.PreparedStatement
DBAdaptor. 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 PreparedStmtHolder
PreparedStatementHolderFactory. 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)
-