Package | Description |
---|---|
ra.db |
Modifier and Type | Method and Description |
---|---|
Prepared |
Prepared.Builder.build()
Build.
|
Modifier and Type | Method and Description |
---|---|
RecordCursor |
JdbcExecutor.prepareExecuteQuery(Prepared prepared)
A SQL statement is precompiled and stored in a Prepared object.
|
RecordCursor |
JdbcExecutor.Transaction.prepareExecuteQuery(Prepared prepared)
A SQL statement is precompiled and stored in a Prepared object.
|
RecordCursor |
StatementExecutor.prepareExecuteQuery(Prepared prepared)
A SQL statement is precompiled and stored in a Prepared object.
|
int |
JdbcExecutor.prepareExecuteUpdate(Prepared prepared)
Executes the SQL statement in this PreparedStatement object, which must be an SQL Data
Manipulation Language (DML) statement, such as INSERT, UPDATE or DELETE; or an SQL statement
that returns nothing, such as a DDL statement.
|
int |
JdbcExecutor.Transaction.prepareExecuteUpdate(Prepared prepared)
Executes the given SQL statement, which may be an INSERT, UPDATE, or DELETE statement or an
SQL statement that returns nothing, such as an SQL DDL statement.
|
int |
StatementExecutor.prepareExecuteUpdate(Prepared prepared)
Executes the given SQL statement, which may be an INSERT, UPDATE, or DELETE statement or an SQL
statement that returns nothing, such as an SQL DDL statement.
|