* @throws ClassNotFoundException
*/
// @Test
public void _testListAllTables() throws SQLException, ClassNotFoundException {
DB db = new DB(DB_PATH);
db.printSelection("select * from SYS.SYSTABLES");
db.printSelection("select * from SYS.SYSCOLUMNS");
db.printSelection("select * from SYS.SYSCONGLOMERATES");
db.close();
}