return tableFactory;
}
private void initializeConnection() {
try {
DriverProperty driverProperty = new DriverProperty();
Class.forName(driverProperty.getValue());
connection = DriverManager.getConnection(driverProperty.getConnectionInformation());
tableFactory = new TableFactoryJdbc(connection);
} catch (ClassNotFoundException e1) {
// AUTO_TODO Auto-generated catch block
e1.printStackTrace();
} catch (SQLException e) {