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