| Package | Description |
|---|---|
| org.soulwing.jdbc |
JDBC facade and supporting classes
|
| org.soulwing.jdbc.source |
SQL source code input support
|
| Modifier and Type | Method and Description |
|---|---|
JdbcCall |
JdbcOperations.call(SQLSource source)
Creates a call operation.
|
JdbcCall |
FluentJdbc.call(SQLSource source)
Creates a call operation.
|
void |
JdbcOperations.execute(SQLSource source)
Executes a single SQL (DDL) statement.
|
void |
FluentJdbc.execute(SQLSource source)
Executes a single SQL (DDL) statement.
|
void |
JdbcOperations.executeScript(SQLSource source)
Executes the sequence of SQL statements produced by the given source.
|
void |
FluentJdbc.executeScript(SQLSource source)
Executes the sequence of SQL statements produced by the given source.
|
JdbcUpdate |
JdbcUpdate.using(SQLSource source)
Configures this update to execute the given SQL statement.
|
JdbcQuery<T> |
JdbcQuery.using(SQLSource source)
Configures this query to execute the given SQL statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ReaderSQLSource
|
class |
ResourceSQLSource
An
SQLSource that reads SQL statements from a resource that can be
located using a URL. |
class |
StringSQLSource
An
SQLSource that reads SQL statements from a string. |
Copyright © 2014–2015 Carl Harris, Jr. All rights reserved.