Added Methods |
int countRowsInTable(JdbcTemplate, String)
|
Count the rows in the given table. |
int countRowsInTableWhere(JdbcTemplate, String, String)
|
Count the rows in the given table, using the provided {@code WHERE} clause. |
int deleteFromTables(JdbcTemplate, String[])
|
Delete all rows from the specified tables. |
void dropTables(JdbcTemplate, String[])
|
Drop the specified tables. |
void executeSqlScript(JdbcTemplate, Resource, boolean)
|
Execute the given SQL script. |
void executeSqlScript(JdbcTemplate, ResourceLoader, String, boolean)
|
Execute the given SQL script. |
void executeSqlScript(JdbcTemplate, EncodedResource, boolean)
|
Execute the given SQL script. |
Changed Methods |
boolean containsSqlScriptDelimiters(String, char)
|
Documentation changed from old to new. |
Determine if the provided SQL script contains the specified delimiter. |
String readScript(LineNumberReader )
|
Documentation changed from old to new. |
Read a script from the provided {@code LineNumberReader} and build a
{@code String} containing the lines. |
void splitSqlScript(String, char, List<String>)
|
Documentation changed from old to new. |
Split an SQL script into separate statements delimited with the provided
delimiter character. |