assertj-db icon indicating copy to clipboard operation
assertj-db copied to clipboard

setStartPoint opens alot of connections to the db

Open soezen opened this issue 5 years ago • 1 comments

When I call setStartPointNow() a lot of connections are opened. One for getting all the tables and then the code loops over all tables and opens another connection for each table to get the table name. Is it possible to refactor this to reuse the already open connection?

  public Changes setStartPointNow() {
    if (request == null && tablesList == null) {
      try (Connection connection = getConnection()) {
        tablesList = new LinkedList<>();
        DatabaseMetaData metaData = connection.getMetaData();
        ResultSet resultSet = metaData.getTables(getCatalog(connection), getSchema(connection), null,
            new String[] { "TABLE" });
        while (resultSet.next()) {
          String tableName = resultSet.getString("TABLE_NAME");
          Table t = new Table().setLetterCases(getTableLetterCase(), getColumnLetterCase(), getPrimaryKeyLetterCase())
                               .setName(getTableLetterCase().convert(tableName));
          copyElement(this, t);
          tablesList.add(t);
        }
      } catch (SQLException e) {
        throw new AssertJDBException(e);
      }
    }
   ...

The copyElement() method within the while loop is the place where another connection is opened to get the table name from database. I tried to overwrite this, but many of the methods in changes are private so it seems impossible to create a workaround.

soezen avatar Nov 06 '20 08:11 soezen

Hi @soezen , indeed it's not really easy to fix it due to the conception of Table implementation :(

VanRoy avatar Feb 23 '21 22:02 VanRoy