| Package | Description |
|---|---|
| ru.curs.celesta.dbutils.adaptors |
Adaptors for various RDBMS.
|
| ru.curs.celesta.dbutils.stmt |
Classes for work with prepared statements.
|
| Modifier and Type | Method and Description |
|---|---|
PreparedStatement |
OpenSourceDbAdaptor.getNavigationStatement(Connection conn,
FromClause from,
String orderBy,
String navigationWhereClause,
Set<String> fields,
long offset) |
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 |
OraAdaptor.getNavigationStatement(Connection conn,
FromClause from,
String orderBy,
String navigationWhereClause,
Set<String> fields,
long offset) |
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 |
DBAdaptor.getRecordSetStatement(Connection conn,
FromClause from,
String whereClause,
String orderBy,
long offset,
long rowCount,
Set<String> fields)
Returns
PreparedStatement containing a filtered set of entries. |
PreparedStatement |
DBAdaptor.getSetCountStatement(Connection conn,
FromClause from,
String whereClause)
Builds a SELECT COUNT statement.
|
| Modifier and Type | Method and 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) |
Copyright © 2023 CURS. All rights reserved.