B C D E F G H I J L M N O P Q R S T U V W
All Classes All Packages
All Classes All Packages
All Classes All Packages
B
- BEGIN - org.soulwing.jdbc.source.Token.Type
- BlobHandler - Interface in org.soulwing.jdbc
-
An API user callback that prepares a
Blob
before a JDBC insert or update operation. - blockComment(DefaultScanner.Request) - Method in class org.soulwing.jdbc.source.DefaultScanner
C
- call(String) - Method in class org.soulwing.jdbc.FluentJdbc
-
Creates a call operation.
- call(String) - Method in interface org.soulwing.jdbc.JdbcOperations
-
Creates a call operation.
- call(SQLSource) - Method in class org.soulwing.jdbc.FluentJdbc
-
Creates a call operation.
- call(SQLSource) - Method in interface org.soulwing.jdbc.JdbcOperations
-
Creates a call operation.
- CASE - org.soulwing.jdbc.source.Token.Type
- ClobHandler - Interface in org.soulwing.jdbc
-
An API user callback that prepares a
Clob
before a JDBC insert or update operation. - close() - Method in interface org.soulwing.jdbc.JdbcCall
-
Closes the JDBC resources associated with this call operation.
- close() - Method in interface org.soulwing.jdbc.JdbcQuery
-
Closes the JDBC resources associated with this query.
- close() - Method in interface org.soulwing.jdbc.JdbcUpdate
-
Closes the JDBC resources associated with this update.
- close() - Method in class org.soulwing.jdbc.source.ReaderSQLSource
- COMMENT - org.soulwing.jdbc.source.Token.Type
D
- DEFAULT_ENCODING - Static variable in class org.soulwing.jdbc.source.ResourceSQLSource
- DefaultScanner - Class in org.soulwing.jdbc.source
-
A
Scanner
for standard SQL and many common variants.
E
- END - org.soulwing.jdbc.source.Token.Type
- EOF - org.soulwing.jdbc.source.Token.Type
- Error(int, int, String) - Constructor for class org.soulwing.jdbc.source.SQLInputException.Error
- execute(String) - Method in class org.soulwing.jdbc.FluentJdbc
-
Executes a single SQL (DDL) statement.
- execute(String) - Method in interface org.soulwing.jdbc.JdbcOperations
-
Executes a single SQL (DDL) statement.
- execute(Parameter...) - Method in interface org.soulwing.jdbc.JdbcCall
-
Executes this call operation.
- execute(Parameter...) - Method in interface org.soulwing.jdbc.JdbcQuery
-
Executes the query, processing the result set with the configured handler.
- execute(Parameter...) - Method in interface org.soulwing.jdbc.JdbcUpdate
-
Executes this update.
- execute(SQLSource) - Method in class org.soulwing.jdbc.FluentJdbc
-
Executes a single SQL (DDL) statement.
- execute(SQLSource) - Method in interface org.soulwing.jdbc.JdbcOperations
-
Executes a single SQL (DDL) statement.
- executeScript(SQLSource) - Method in class org.soulwing.jdbc.FluentJdbc
-
Executes the sequence of SQL statements produced by the given source.
- executeScript(SQLSource) - Method in interface org.soulwing.jdbc.JdbcOperations
-
Executes the sequence of SQL statements produced by the given source.
- extractingColumn() - Method in interface org.soulwing.jdbc.JdbcQuery
-
Configures this query to extract the value of the first column.
- extractingColumn(int) - Method in interface org.soulwing.jdbc.JdbcQuery
-
Configures this query to extract the value of the given column.
- extractingColumn(String) - Method in interface org.soulwing.jdbc.JdbcQuery
-
Configures this query to extract the value of the given column.
F
- FluentJdbc - Class in org.soulwing.jdbc
-
A thread-safe
JdbcOperations
implementation. - FluentJdbc(Connection) - Constructor for class org.soulwing.jdbc.FluentJdbc
-
Constructs a new instance for use by a single thread.
- FluentJdbc(DataSource) - Constructor for class org.soulwing.jdbc.FluentJdbc
-
Constructs a new instance.
- format(String) - Method in class org.soulwing.jdbc.source.RawSQLFormatter
- format(String) - Method in class org.soulwing.jdbc.source.SimpleSQLFormatter
- format(String) - Method in interface org.soulwing.jdbc.source.SQLFormatter
-
Formats SQL statement text.
- FormattingJdbcLogger - Class in org.soulwing.jdbc.logger
-
A
JdbcLogger
that formats SQL statement text before delegating to another logger. - FormattingJdbcLogger(JdbcLogger) - Constructor for class org.soulwing.jdbc.logger.FormattingJdbcLogger
-
Constructs a new instance that uses
SimpleSQLFormatter
. - FormattingJdbcLogger(JdbcLogger, SQLFormatter) - Constructor for class org.soulwing.jdbc.logger.FormattingJdbcLogger
-
Constructs a new instance.
G
- getErrors() - Method in exception org.soulwing.jdbc.source.SQLInputException
- getLength() - Method in class org.soulwing.jdbc.source.Token
- getLexeme() - Method in class org.soulwing.jdbc.source.Token
- getLocalizedMessage() - Method in exception org.soulwing.jdbc.source.SQLInputException
- getMessage() - Method in exception org.soulwing.jdbc.source.SQLInputException
- getMoreResults() - Method in interface org.soulwing.jdbc.JdbcCall
-
Gets a flag indicating the next result type available.
- getOffset() - Method in class org.soulwing.jdbc.source.Token
- getOutParameter(int, Class<T>) - Method in interface org.soulwing.jdbc.JdbcCall
-
Gets the value of an OUT or INOUT parameter.
- getOutParameter(String, Class<T>) - Method in interface org.soulwing.jdbc.JdbcCall
-
Gets the value of an OUT or INOUT parameter.
- getResource(String) - Method in interface org.soulwing.jdbc.source.ResourceSQLSource.ResourceAccessor
-
Gets a URL for a resource.
- getResultSet() - Method in interface org.soulwing.jdbc.JdbcCall
-
Gets the current result set.
- getType() - Method in class org.soulwing.jdbc.Parameter
-
Gets the
type
property. - getType() - Method in class org.soulwing.jdbc.source.Token
- getUpdateCount() - Method in interface org.soulwing.jdbc.JdbcCall
-
Gets the number of rows inserted/updated.
- getValue() - Method in class org.soulwing.jdbc.Parameter
-
Gets the
value
property.
H
- handleParameter(PreparedStatement, int) - Method in interface org.soulwing.jdbc.ParameterHandler
- handleResult(ResultSet) - Method in interface org.soulwing.jdbc.ResultSetHandler
-
Handles the result set returned by a query.
- handleResult(ResultSetHandler<T>) - Method in interface org.soulwing.jdbc.JdbcCall
-
Processes the current result set using the given handler.
- handlingResultWith(ResultSetHandler<T>) - Method in interface org.soulwing.jdbc.JdbcQuery
-
Configures this query to use the given result set handler.
I
- identifier(DefaultScanner.Request) - Method in class org.soulwing.jdbc.source.DefaultScanner
- IDENTIFIER - org.soulwing.jdbc.source.Token.Type
- IF - org.soulwing.jdbc.source.Token.Type
- in(int, Object) - Static method in class org.soulwing.jdbc.Parameter
-
Creates a new input parameter with the given value.
- in(Object) - Static method in class org.soulwing.jdbc.Parameter
-
Creates a new input parameter with the given value.
- inject(int, PreparedStatement) - Method in class org.soulwing.jdbc.Parameter
-
Injects this parameter into the given prepared statement.
- inout(int, Object) - Static method in class org.soulwing.jdbc.Parameter
-
Creates a new input/output parameter with the given type.
- INSTANCE - Static variable in class org.soulwing.jdbc.logger.NullJdbcLogger
- INSTANCE - Static variable in class org.soulwing.jdbc.source.DefaultScanner
- INSTANCE - Static variable in class org.soulwing.jdbc.source.PostgresScanner
- isAlpha(char) - Method in class org.soulwing.jdbc.source.DefaultScanner
- isAlphaNumeric(char) - Method in class org.soulwing.jdbc.source.DefaultScanner
- isAutoCommit() - Method in class org.soulwing.jdbc.FluentJdbc
-
Gets the
autoCommit
flag state. - isIdentifierChar(char) - Method in class org.soulwing.jdbc.source.DefaultScanner
- isIdentifierChar(char) - Method in class org.soulwing.jdbc.source.PostgresScanner
- isIdentifierStart(char) - Method in class org.soulwing.jdbc.source.DefaultScanner
- isIgnoreErrors() - Method in class org.soulwing.jdbc.FluentJdbc
-
Gets the
ignoreErrors
flag state. - isNumberChar(char) - Method in class org.soulwing.jdbc.source.DefaultScanner
- isNumeric(char) - Method in class org.soulwing.jdbc.source.DefaultScanner
- isOperator(char) - Method in class org.soulwing.jdbc.source.DefaultScanner
- isWhitespace(char) - Method in class org.soulwing.jdbc.source.DefaultScanner
J
- JclJdbcLogger - Class in org.soulwing.jdbc.logger
-
A
JdbcLogger
that delegates to a Commons Logging logger. - JclJdbcLogger(Log) - Constructor for class org.soulwing.jdbc.logger.JclJdbcLogger
-
Constructs a new instance.
- JdbcCall - Interface in org.soulwing.jdbc
-
A SQL call operation.
- JdbcLogger - Interface in org.soulwing.jdbc.logger
-
A simplified log writer interface for logging SQL statements and bound parameter values.
- JdbcOperations - Interface in org.soulwing.jdbc
-
A high level API for performing SQL operations using JDBC.
- JdbcQuery<T> - Interface in org.soulwing.jdbc
-
An SQL query operation.
- JdbcUpdate - Interface in org.soulwing.jdbc
-
An SQL update operation.
- JuliJdbcLogger - Class in org.soulwing.jdbc.logger
-
A
JdbcLogger
that delegates toLogger
. - JuliJdbcLogger(Logger) - Constructor for class org.soulwing.jdbc.logger.JuliJdbcLogger
-
Constructs a new instance.
L
- LEFT_BRACE - org.soulwing.jdbc.source.Token.Type
- LEFT_PAREN - org.soulwing.jdbc.source.Token.Type
- length - Variable in class org.soulwing.jdbc.source.SQLInputException.Error
- lineComment(DefaultScanner.Request) - Method in class org.soulwing.jdbc.source.DefaultScanner
- LITERAL - org.soulwing.jdbc.source.Token.Type
- Log4j2JdbcLogger - Class in org.soulwing.jdbc.logger
-
A
JdbcLogger
that delegates to a Log4j 2Logger
. - Log4j2JdbcLogger(Logger) - Constructor for class org.soulwing.jdbc.logger.Log4j2JdbcLogger
-
Constructs a new instance.
- LOOP - org.soulwing.jdbc.source.Token.Type
M
- mappingRowsWith(RowMapper<T>) - Method in interface org.soulwing.jdbc.JdbcQuery
-
Configures this query to use the given row mapper.
- mapRow(ResultSet, int) - Method in interface org.soulwing.jdbc.RowMapper
-
Maps a single row in a
ResultSet
to a new instance of the receiver's declared data type. - message - Variable in class org.soulwing.jdbc.source.SQLInputException.Error
N
- NClobHandler - Interface in org.soulwing.jdbc
-
An API user callback that prepares a
NClob
before a JDBC insert or update operation. - next() - Method in class org.soulwing.jdbc.source.ReaderSQLSource
- next() - Method in interface org.soulwing.jdbc.source.SQLSource
-
Gets the next statement from this source.
- nextToken(DefaultScanner.Request) - Method in class org.soulwing.jdbc.source.DefaultScanner
- NullJdbcLogger - Class in org.soulwing.jdbc.logger
-
A singleton
JdbcLogger
that does nothing. - number(DefaultScanner.Request) - Method in class org.soulwing.jdbc.source.DefaultScanner
O
- offset - Variable in class org.soulwing.jdbc.source.SQLInputException.Error
- operator(DefaultScanner.Request) - Method in class org.soulwing.jdbc.source.DefaultScanner
- org.soulwing.jdbc - package org.soulwing.jdbc
-
JDBC facade and supporting classes
- org.soulwing.jdbc.logger - package org.soulwing.jdbc.logger
-
Logging support
- org.soulwing.jdbc.source - package org.soulwing.jdbc.source
-
SQL source code input support
- out(int) - Static method in class org.soulwing.jdbc.Parameter
-
Creates a new output parameter with the given type.
P
- Parameter - Class in org.soulwing.jdbc
-
An SQL parameter injector.
- ParameterHandler - Interface in org.soulwing.jdbc
-
A handler that is responsible for injecting a parameter value into a
PreparedStatement
. - PostgresScanner - Class in org.soulwing.jdbc.source
-
A lexical scanner for the Postgres SQL dialect.
- prepareBlob(Blob) - Method in interface org.soulwing.jdbc.BlobHandler
-
Prepares the given
Blob
before it is included an in insert or update statement. - prepareClob(Clob) - Method in interface org.soulwing.jdbc.ClobHandler
-
Prepares the given
Clob
before it is included an in insert or update statement. - prepareNClob(NClob) - Method in interface org.soulwing.jdbc.NClobHandler
-
Prepares the given
NClob
before it is included an in insert or update statement. - PrintWriterJdbcLogger - Class in org.soulwing.jdbc.logger
-
A
JdbcLogger
that delegates to a print stream or print writer. - PrintWriterJdbcLogger(PrintStream) - Constructor for class org.soulwing.jdbc.logger.PrintWriterJdbcLogger
-
Constructs a new instance.
- PrintWriterJdbcLogger(PrintStream, boolean) - Constructor for class org.soulwing.jdbc.logger.PrintWriterJdbcLogger
-
Constructs a new instance.
- PrintWriterJdbcLogger(PrintWriter) - Constructor for class org.soulwing.jdbc.logger.PrintWriterJdbcLogger
-
Constructs a new instance.
- PrintWriterJdbcLogger(PrintWriter, boolean) - Constructor for class org.soulwing.jdbc.logger.PrintWriterJdbcLogger
-
Constructs a new instance.
Q
- query() - Method in class org.soulwing.jdbc.FluentJdbc
-
Creates a query operation.
- query() - Method in interface org.soulwing.jdbc.JdbcOperations
-
Creates a query operation.
- queryForType(Class<T>) - Method in class org.soulwing.jdbc.FluentJdbc
-
Creates a query operation for objects of a given type.
- queryForType(Class<T>) - Method in interface org.soulwing.jdbc.JdbcOperations
-
Creates a query operation for objects of a given type.
- quotedIdentifier(DefaultScanner.Request) - Method in class org.soulwing.jdbc.source.DefaultScanner
R
- RawSQLFormatter - Class in org.soulwing.jdbc.source
-
An
SQLFormatter
that does no formatting. - RawSQLFormatter() - Constructor for class org.soulwing.jdbc.source.RawSQLFormatter
- ReaderSQLSource - Class in org.soulwing.jdbc.source
- ReaderSQLSource(Reader) - Constructor for class org.soulwing.jdbc.source.ReaderSQLSource
- ReaderSQLSource(Reader, Scanner) - Constructor for class org.soulwing.jdbc.source.ReaderSQLSource
- repeatedly() - Method in interface org.soulwing.jdbc.JdbcQuery
-
Configures this query for repeated execution.
- repeatedly() - Method in interface org.soulwing.jdbc.JdbcUpdate
-
Configures this update for repeated execution.
- ResourceSQLSource - Class in org.soulwing.jdbc.source
-
An
SQLSource
that reads SQL statements from a resource that can be located using a URL. - ResourceSQLSource(URL, String) - Constructor for class org.soulwing.jdbc.source.ResourceSQLSource
-
Constructs a new SQL source for a resource at the specified location, which uses the specified encoding.
- ResourceSQLSource(URL, String, Scanner) - Constructor for class org.soulwing.jdbc.source.ResourceSQLSource
-
Constructs a new SQL source for a resource at the specified location, which uses the specified encoding.
- ResourceSQLSource.ResourceAccessor - Interface in org.soulwing.jdbc.source
-
An accessor for a resource.
- ResultSetHandler<T> - Interface in org.soulwing.jdbc
-
A closure that handles the result set returned by a query.
- retrieveList(int, Class<T>) - Method in interface org.soulwing.jdbc.JdbcCall
-
Retrieves all values of a given column in the current result set.
- retrieveList(String, Class<T>) - Method in interface org.soulwing.jdbc.JdbcCall
-
Retrieves all values of a given column in the current result set.
- retrieveList(Parameter...) - Method in interface org.soulwing.jdbc.JdbcQuery
-
Executes the query, retrieving the list of values for all matching rows.
- retrieveList(RowMapper<T>) - Method in interface org.soulwing.jdbc.JdbcCall
-
Retrieves and maps all rows in the current result set using the given row mapper.
- retrieveValue(int, Class<T>) - Method in interface org.soulwing.jdbc.JdbcCall
-
Retrieves a column value from the current result set, which must contain a exactly one row.
- retrieveValue(String, Class<T>) - Method in interface org.soulwing.jdbc.JdbcCall
-
Retrieves a column value from the current result set, which must contain a exactly one row.
- retrieveValue(Parameter...) - Method in interface org.soulwing.jdbc.JdbcQuery
-
Executes the query, retrieving a value representing the matching row
- retrieveValue(RowMapper<T>) - Method in interface org.soulwing.jdbc.JdbcCall
-
Retrieves and maps a single row in current result set, which must contain exactly one row.
- RIGHT_BRACE - org.soulwing.jdbc.source.Token.Type
- RIGHT_PAREN - org.soulwing.jdbc.source.Token.Type
- RowMapper<T> - Interface in org.soulwing.jdbc
-
A closure that maps a row in a
ResultSet
to an instance of a given type.
S
- Scanner - Interface in org.soulwing.jdbc.source
-
A lexical scanner for an SQL source.
- scanToken(char, DefaultScanner.Request) - Method in class org.soulwing.jdbc.source.DefaultScanner
- scanToken(char, DefaultScanner.Request) - Method in class org.soulwing.jdbc.source.PostgresScanner
- scanTokens(SourceReader, ErrorReporter) - Method in class org.soulwing.jdbc.source.DefaultScanner
- scanTokens(SourceReader, ErrorReporter) - Method in interface org.soulwing.jdbc.source.Scanner
- SEMICOLON - org.soulwing.jdbc.source.Token.Type
- setAutoCommit(boolean) - Method in class org.soulwing.jdbc.FluentJdbc
-
Sets the
autoCommit
flag. - setIgnoreErrors(boolean) - Method in class org.soulwing.jdbc.FluentJdbc
-
Sets the
ignoreErrors
flag. - setLogger(PrintStream) - Method in class org.soulwing.jdbc.FluentJdbc
-
Sets a print stream to use for SQL statement logging.
- setLogger(PrintStream, boolean) - Method in class org.soulwing.jdbc.FluentJdbc
-
Sets a print stream to use for SQL statement logging.
- setLogger(PrintWriter) - Method in class org.soulwing.jdbc.FluentJdbc
-
Sets a print writer to use for SQL statement logging.
- setLogger(PrintWriter, boolean) - Method in class org.soulwing.jdbc.FluentJdbc
-
Sets a print writer to use for SQL statement logging.
- setLogger(JdbcLogger) - Method in class org.soulwing.jdbc.FluentJdbc
-
Sets the logger to use for SQL statement logging.
- SimpleSQLFormatter - Class in org.soulwing.jdbc.source
-
A simple
SQLFormatter
that removes comments and cleans up whitespace to make an SQL statement occupy a single line in a log file. - SimpleSQLFormatter() - Constructor for class org.soulwing.jdbc.source.SimpleSQLFormatter
- Slf4jJdbcLogger - Class in org.soulwing.jdbc.logger
- Slf4jJdbcLogger(Logger) - Constructor for class org.soulwing.jdbc.logger.Slf4jJdbcLogger
-
Constructs a new instance.
- SQLFormatter - Interface in org.soulwing.jdbc.source
-
A formatter for SQL statement text.
- SQLInputException - Exception in org.soulwing.jdbc.source
- SQLInputException() - Constructor for exception org.soulwing.jdbc.source.SQLInputException
- SQLInputException(int, int, String) - Constructor for exception org.soulwing.jdbc.source.SQLInputException
- SQLInputException(String, Throwable) - Constructor for exception org.soulwing.jdbc.source.SQLInputException
- SQLInputException.Error - Class in org.soulwing.jdbc.source
- SQLNonUniqueResultException - Exception in org.soulwing.jdbc
-
An exception thrown when a single-row query returns more than one row.
- SQLNonUniqueResultException() - Constructor for exception org.soulwing.jdbc.SQLNonUniqueResultException
- SQLNoResultException - Exception in org.soulwing.jdbc
-
An exception thrown when a single-row query returns nothing at all.
- SQLNoResultException() - Constructor for exception org.soulwing.jdbc.SQLNoResultException
- SQLNullStatementException - Exception in org.soulwing.jdbc
-
An exception thrown when an
SQLSource
contains no statements. - SQLNullStatementException() - Constructor for exception org.soulwing.jdbc.SQLNullStatementException
- SQLResourceNotFoundException - Exception in org.soulwing.jdbc.source
-
An exception thrown by an
SQLSource
when the resource cannot be found. - SQLResourceNotFoundException(String) - Constructor for exception org.soulwing.jdbc.source.SQLResourceNotFoundException
- SQLResourceNotFoundException(String, Class) - Constructor for exception org.soulwing.jdbc.source.SQLResourceNotFoundException
- SQLRuntimeException - Exception in org.soulwing.jdbc
-
A runtime exception that wraps an
SQLException
. - SQLRuntimeException() - Constructor for exception org.soulwing.jdbc.SQLRuntimeException
-
Constructs a new instance.
- SQLRuntimeException(String) - Constructor for exception org.soulwing.jdbc.SQLRuntimeException
-
Constructs a new instance.
- SQLRuntimeException(String, Throwable) - Constructor for exception org.soulwing.jdbc.SQLRuntimeException
-
Constructs a new instance.
- SQLRuntimeException(String, Throwable, boolean, boolean) - Constructor for exception org.soulwing.jdbc.SQLRuntimeException
-
Constructs a new instance.
- SQLRuntimeException(Throwable) - Constructor for exception org.soulwing.jdbc.SQLRuntimeException
-
Constructs a new instance.
- SQLSource - Interface in org.soulwing.jdbc.source
-
A source of SQL statements.
- string(DefaultScanner.Request) - Method in class org.soulwing.jdbc.source.DefaultScanner
- StringSQLSource - Class in org.soulwing.jdbc.source
-
An
SQLSource
that reads SQL statements from a string. - StringSQLSource(String) - Constructor for class org.soulwing.jdbc.source.StringSQLSource
-
Constructs a new instance.
- StringSQLSource(String, Scanner) - Constructor for class org.soulwing.jdbc.source.StringSQLSource
-
Constructs a new instance.
T
- Token - Class in org.soulwing.jdbc.source
-
A token recognized by a scanner for an SQL source.
- Token(Token.Type, String, int) - Constructor for class org.soulwing.jdbc.source.Token
- Token.Type - Enum in org.soulwing.jdbc.source
- tokenOf(Token.Type, DefaultScanner.Request) - Method in class org.soulwing.jdbc.source.DefaultScanner
- toString() - Method in class org.soulwing.jdbc.Parameter
- toString() - Method in class org.soulwing.jdbc.source.Token
- toString(int) - Method in class org.soulwing.jdbc.Parameter
-
Produces a string representation of this parameter prefixed with a given index indicating its position in a parameter list.
- TRANSACTION - org.soulwing.jdbc.source.Token.Type
U
- update() - Method in class org.soulwing.jdbc.FluentJdbc
-
Creates an update operation.
- update() - Method in interface org.soulwing.jdbc.JdbcOperations
-
Creates an update operation.
- using(String) - Method in interface org.soulwing.jdbc.JdbcQuery
-
Configures this query to execute the given SQL statement.
- using(String) - Method in interface org.soulwing.jdbc.JdbcUpdate
-
Configures this update to execute the given SQL statement.
- using(SQLSource) - Method in interface org.soulwing.jdbc.JdbcQuery
-
Configures this query to execute the given SQL statement.
- using(SQLSource) - Method in interface org.soulwing.jdbc.JdbcUpdate
-
Configures this update to execute the given SQL statement.
V
- valueOf(String) - Static method in enum org.soulwing.jdbc.source.Token.Type
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum org.soulwing.jdbc.source.Token.Type
-
Returns an array containing the constants of this enum type, in the order they are declared.
W
- whitespace(DefaultScanner.Request) - Method in class org.soulwing.jdbc.source.DefaultScanner
- WHITESPACE - org.soulwing.jdbc.source.Token.Type
- with(int, Object) - Static method in class org.soulwing.jdbc.Parameter
-
Creates a new input parameter with the given value.
- with(Object) - Static method in class org.soulwing.jdbc.Parameter
-
Creates a new input parameter with the given value.
- with(String) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource relative to the root of the classpath, which uses the
default encoding
. - with(String, Class<?>) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource in the same package as the given class, which uses the
default encoding
. - with(String, Class<?>, String) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource in the same package as the given class which uses the specified encoding.
- with(String, Class<?>, String, Scanner) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource in the same package as the given class which uses the specified encoding.
- with(String, Class<?>, Scanner) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource in the same package as the given class, which uses the
default encoding
. - with(String, ClassLoader) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource relative to the root of the given class loader, which uses the
default encoding
. - with(String, ClassLoader, String) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource relative to the root of the given class loader, which uses the specified encoding.
- with(String, ClassLoader, String, Scanner) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource relative to the root of the given class loader, which uses the specified encoding.
- with(String, ClassLoader, Scanner) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource relative to the root of the given class loader, which uses the
default encoding
. - with(String, String) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource relative to the root of the classpath, which uses the specified encoding.
- with(String, String, Scanner) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource relative to the root of the classpath, which uses the specified encoding.
- with(String, ResourceSQLSource.ResourceAccessor) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource that will be obtained from the given resource accessor and which uses the
default encoding
. - with(String, ResourceSQLSource.ResourceAccessor, String) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource that will be obtained from the given resource accessor and which uses the specified encoding.
- with(String, ResourceSQLSource.ResourceAccessor, String, Scanner) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource that will be obtained from the given resource accessor and which uses the specified encoding.
- with(String, ResourceSQLSource.ResourceAccessor, Scanner) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource that will be obtained from the given resource accessor and which uses the
default encoding
. - with(String, Scanner) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource relative to the root of the classpath, which uses the
default encoding
. - with(URI) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource at the specified location, which uses the specified encoding.
- with(URI, String) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource at the specified location, which uses the specified encoding.
- with(URI, String, Scanner) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource at the specified location, which uses the specified encoding.
- with(URI, Scanner) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource at the specified location, which uses the specified encoding.
- with(URL) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource at the specified location, which uses the specified encoding.
- with(URL, String) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource at the specified location, which uses the specified encoding.
- with(URL, String, Scanner) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource at the specified location, which uses the specified encoding.
- with(URL, Scanner) - Static method in class org.soulwing.jdbc.source.ResourceSQLSource
-
Creates a new SQL source for a resource at the specified location, which uses the specified encoding.
- writeParameters(Parameter[]) - Method in class org.soulwing.jdbc.logger.FormattingJdbcLogger
- writeParameters(Parameter[]) - Method in class org.soulwing.jdbc.logger.JclJdbcLogger
- writeParameters(Parameter[]) - Method in interface org.soulwing.jdbc.logger.JdbcLogger
-
Writes the parameters that will be bound for an SQL statement.
- writeParameters(Parameter[]) - Method in class org.soulwing.jdbc.logger.JuliJdbcLogger
- writeParameters(Parameter[]) - Method in class org.soulwing.jdbc.logger.Log4j2JdbcLogger
- writeParameters(Parameter[]) - Method in class org.soulwing.jdbc.logger.NullJdbcLogger
- writeParameters(Parameter[]) - Method in class org.soulwing.jdbc.logger.PrintWriterJdbcLogger
- writeParameters(Parameter[]) - Method in class org.soulwing.jdbc.logger.Slf4jJdbcLogger
- writeStatement(String) - Method in class org.soulwing.jdbc.logger.FormattingJdbcLogger
- writeStatement(String) - Method in class org.soulwing.jdbc.logger.JclJdbcLogger
- writeStatement(String) - Method in interface org.soulwing.jdbc.logger.JdbcLogger
-
Writes the text of an SQL statement to the log.
- writeStatement(String) - Method in class org.soulwing.jdbc.logger.JuliJdbcLogger
- writeStatement(String) - Method in class org.soulwing.jdbc.logger.Log4j2JdbcLogger
- writeStatement(String) - Method in class org.soulwing.jdbc.logger.NullJdbcLogger
- writeStatement(String) - Method in class org.soulwing.jdbc.logger.PrintWriterJdbcLogger
- writeStatement(String) - Method in class org.soulwing.jdbc.logger.Slf4jJdbcLogger
All Classes All Packages