/** @see Dao#startThreadConnection() */
 public DatabaseConnection startThreadConnection() {
   try {
     return dao.startThreadConnection();
   } catch (SQLException e) {
     logMessage(e, "startThreadConnection() threw exception");
     throw new RuntimeException(e);
   }
 }