public class PreparedStatementCreatorFactory extends Object
PreparedStatementCreator
objects with different parameters based on an SQL statement and a single
set of parameter declarations.Constructor and Description |
---|
PreparedStatementCreatorFactory(String sql)
Create a new factory.
|
PreparedStatementCreatorFactory(String sql,
int... types)
Create a new factory with the given SQL and JDBC types.
|
PreparedStatementCreatorFactory(String sql,
List<SqlParameter> declaredParameters)
Create a new factory with the given SQL and parameters.
|
Modifier and Type | Method and Description |
---|---|
void |
addParameter(SqlParameter param)
Add a new declared parameter.
|
String |
getSql()
Return the SQL statement to execute.
|
PreparedStatementCreator |
newPreparedStatementCreator(List<?> params)
Return a new PreparedStatementCreator for the given parameters.
|
PreparedStatementCreator |
newPreparedStatementCreator(Object[] params)
Return a new PreparedStatementCreator for the given parameters.
|
PreparedStatementCreator |
newPreparedStatementCreator(String sqlToUse,
Object[] params)
Return a new PreparedStatementCreator for the given parameters.
|
PreparedStatementSetter |
newPreparedStatementSetter(List<?> params)
Return a new PreparedStatementSetter for the given parameters.
|
PreparedStatementSetter |
newPreparedStatementSetter(Object[] params)
Return a new PreparedStatementSetter for the given parameters.
|
void |
setGeneratedKeysColumnNames(String... names)
Set the column names of the auto-generated keys.
|
void |
setResultSetType(int resultSetType)
Set whether to use prepared statements that return a specific type of ResultSet.
|
void |
setReturnGeneratedKeys(boolean returnGeneratedKeys)
Set whether prepared statements should be capable of returning auto-generated keys.
|
void |
setUpdatableResults(boolean updatableResults)
Set whether to use prepared statements capable of returning updatable ResultSets.
|
public PreparedStatementCreatorFactory(String sql)
addParameter(org.springframework.jdbc.core.SqlParameter)
method or have no parameters.sql
- the SQL statement to executepublic PreparedStatementCreatorFactory(String sql, int... types)
sql
- the SQL statement to executetypes
- int array of JDBC typespublic PreparedStatementCreatorFactory(String sql, List<SqlParameter> declaredParameters)
sql
- the SQL statement to executedeclaredParameters
- list of SqlParameter
objectspublic final String getSql()
public void addParameter(SqlParameter param)
Order of parameter addition is significant.
param
- the parameter to add to the list of declared parameterspublic void setResultSetType(int resultSetType)
resultSetType
- the ResultSet typeResultSet.TYPE_FORWARD_ONLY
,
ResultSet.TYPE_SCROLL_INSENSITIVE
,
ResultSet.TYPE_SCROLL_SENSITIVE
public void setUpdatableResults(boolean updatableResults)
public void setReturnGeneratedKeys(boolean returnGeneratedKeys)
public void setGeneratedKeysColumnNames(String... names)
public PreparedStatementSetter newPreparedStatementSetter(@Nullable List<?> params)
params
- list of parameters (may be null
)public PreparedStatementSetter newPreparedStatementSetter(@Nullable Object[] params)
params
- the parameter array (may be null
)public PreparedStatementCreator newPreparedStatementCreator(@Nullable List<?> params)
params
- list of parameters (may be null
)public PreparedStatementCreator newPreparedStatementCreator(@Nullable Object[] params)
params
- the parameter array (may be null
)public PreparedStatementCreator newPreparedStatementCreator(String sqlToUse, @Nullable Object[] params)
sqlToUse
- the actual SQL statement to use (if different from
the factory's, for example because of named parameter expanding)params
- the parameter array (may be null
)