JDBC Testing Support
The org.springframework.test.jdbc package contains JdbcTestUtils, which is a
collection of JDBC-related utility functions intended to simplify standard database
testing scenarios. Specifically, JdbcTestUtils provides the following static utility
methods.
-
countRowsInTable(..): Counts the number of rows in the given table. -
countRowsInTableWhere(..): Counts the number of rows in the given table by using the providedWHEREclause. -
deleteFromTables(..): Deletes all rows from the specified tables. -
deleteFromTableWhere(..): Deletes rows from the given table by using the providedWHEREclause. -
dropTables(..): Drops the specified tables.
|
The |