| Package | Description |
|---|---|
| ra.db | |
| ra.db.record |
| Modifier and Type | Method and Description |
|---|---|
RecordCursor |
JdbcExecutor.executeQuery(java.lang.String sql)
Execute query, ex : SELECT * FROM table.
|
RecordCursor |
JdbcExecutor.Transaction.executeQuery(java.lang.String sql)
Execute a query SQL using a batch.
|
RecordCursor |
StatementExecutor.executeQuery(java.lang.String sql)
Executes the given SQL statement, which returns a single RecordCursor object.
|
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.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
Record
Record.
|
| Modifier and Type | Class and Description |
|---|---|
class |
RecordSet
The record of query database.
|