set.beforeFirst();
while (set.next()) {
String engine = set.getString(2);
if ("memory".equalsIgnoreCase(engine)) {
this.tables.add(new EncryptedTable(this, set.getString(1)));
}
}
} catch (SQLException e) {
throw ThrowableManagerRegistry.caught(e);
}