Provides the core JDBC framework, based on JdbcTemplate
and its associated callback interfaces and helper objects.
Context metadata abstraction for the configuration and execution
of table inserts and stored procedure calls.
JdbcTemplate variant with named parameter support.
Simplification layer for common JDBC interactions.
The classes in this package represent RDBMS queries, updates, and stored
procedures as threadsafe, reusable objects.
class
class
class
class
Object to represent an SQL parameter value, including parameter meta-data
such as the SQL type and the scale for numeric values.
class
Represents a returned
ResultSet
from a stored procedure call.
class
Represents a returned update count from a stored procedure call.
Convert a list of JDBC types, as defined in
java.sql.Types
,
to a List of SqlParameter objects as used in this package.
Add a new declared parameter.
Add a new declared parameter.
static void
Set the value for a parameter.
Execute an SQL call using a CallableStatementCreator to provide SQL and
any required parameters.
Extract output parameters from the completed stored procedure.
Extract returned ResultSets from the completed stored procedure.
Copy constructor.
Create a new SqlParameterValue based on the given SqlParameter declaration.
Create a new factory with the given SQL and the given parameters.
Create a new factory with the given SQL and parameters.
Create a default in/out parameter based on the provided meta-data.
Create a default in parameter based on the provided meta-data.
Create a default out parameter based on the provided meta-data.
Create a ReturnResultSetParameter/SqlOutParameter depending on the support provided
by the JDBC driver used for the database in use.
Get the List of SqlParameter objects to be used in call execution.
Reconcile the provided parameters with available meta-data and add new ones where appropriate.
Build the parameter binding fragment.
Process the list of parameters provided, and if procedure column meta-data is used,
the parameters will be matched against the meta-data information and any missing
ones will be automatically included.
Reconcile the provided parameters with available meta-data and add new ones where appropriate.
Convert parameter declarations from an SqlParameterSource to a corresponding List of SqlParameters.
Convert a Map of named parameter values to a corresponding array.
Get a List of all the call parameters to be used for call.
Add a declared parameter to the list of parameters for the call.
Specify one or more parameters if desired.
Declare a parameter for this operation.
Declare a parameter.
Add one or more declared parameters.