* @throws SQLException if a database error occurs.
*/
public void verifyTable(final String dbName, final String tableName) throws NamingException, SQLException {
// verifies the table
TableManager tableManager = new TableManager(dbName);
tableManager.verifyTable(tableName);
}
/**
* @see org.ow2.easybeans.tests.common.ejbs.stateless.containermanaged.ItfDatabaseManager#insertTable(java.lang.String,
* java.lang.String)