Uses of Interface
org.soulwing.jdbc.source.SQLSource
-
Packages that use SQLSource Package Description org.soulwing.jdbc JDBC facade and supporting classesorg.soulwing.jdbc.source SQL source code input support -
-
Uses of SQLSource in org.soulwing.jdbc
Methods in org.soulwing.jdbc with parameters of type SQLSource Modifier and Type Method Description JdbcCall
FluentJdbc. call(SQLSource source)
Creates a call operation.JdbcCall
JdbcOperations. call(SQLSource source)
Creates a call operation.void
FluentJdbc. execute(SQLSource source)
Executes a single SQL (DDL) statement.void
JdbcOperations. execute(SQLSource source)
Executes a single SQL (DDL) statement.void
FluentJdbc. executeScript(SQLSource source)
Executes the sequence of SQL statements produced by the given source.void
JdbcOperations. executeScript(SQLSource source)
Executes the sequence of SQL statements produced by the given source.JdbcQuery<T>
JdbcQuery. using(SQLSource source)
Configures this query to execute the given SQL statement.JdbcUpdate
JdbcUpdate. using(SQLSource source)
Configures this update to execute the given SQL statement. -
Uses of SQLSource in org.soulwing.jdbc.source
Classes in org.soulwing.jdbc.source that implement SQLSource Modifier and Type Class Description class
ReaderSQLSource
class
ResourceSQLSource
AnSQLSource
that reads SQL statements from a resource that can be located using a URL.class
StringSQLSource
AnSQLSource
that reads SQL statements from a string.
-