83848586878889
new TableQuery("skgwaguhsd", connectionPool, new DefaultSQLGenerator()); } @Test(expected = IllegalArgumentException.class) public void construction_emptyTableName_shouldFail() { new TableQuery("", connectionPool, new DefaultSQLGenerator()); }
93949596979899
new TableQuery("people", connectionPool, null); } @Test(expected = IllegalArgumentException.class) public void construction_nullConnectionPool_shouldFail() { new TableQuery("people", null, new DefaultSQLGenerator()); }
108109110111112113114
* Name of the database table to connect to * @param connectionPool * Connection pool for accessing the database */ public TableQuery(String tableName, JDBCConnectionPool connectionPool) { this(tableName, connectionPool, new DefaultSQLGenerator()); }
116117118119120121122
142143144145146147148
113114115116117118119