| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.springframework.test.jdbc.JdbcTestUtils
public class JdbcTestUtils
JdbcTestUtils is a collection of JDBC related utility methods for use in unit and integration testing scenarios.
| Constructor Summary | |
|---|---|
| JdbcTestUtils() | |
| Method Summary | |
|---|---|
| static boolean | containsSqlScriptDelimiters(String script,
                            char delim)Does the provided SQL script contain the specified delimiter? | 
| static String | readScript(LineNumberReader lineNumberReader)Read a script from the LineNumberReaded and build a String containing the lines. | 
| static void | splitSqlScript(String script,
               char delim,
               List statements)Split an SQL script into separate statements delimited with the provided delimiter character. | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Constructor Detail | 
|---|
public JdbcTestUtils()
| Method Detail | 
|---|
public static String readScript(LineNumberReader lineNumberReader)
                         throws IOException
lineNumberReader - the LineNumberReader> containing the script to be processed
- Returns:
- Stringcontaining the script lines
- Throws:
- IOException
public static boolean containsSqlScriptDelimiters(String script,
                                                  char delim)
script - the SQL scriptdelim - charecter delimiting each statement - typically a ';' character
public static void splitSqlScript(String script,
                                  char delim,
                                  List statements)
List.
script - the SQL scriptdelim - charecter delimiting each statement - typically a ';' characterstatements - the List that will contain the individual statements| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||