示例#1
0
 @Override
 public boolean isCorrectDatabaseImplementation(final DatabaseConnection conn)
     throws DatabaseException {
   return PRODUCT_NAME.equals(conn.getDatabaseProductName());
 }
示例#2
0
 public boolean isCorrectDatabaseImplementation(DatabaseConnection conn) throws DatabaseException {
   return PRODUCT_NAME.equalsIgnoreCase(conn.getDatabaseProductName());
 }
示例#3
0
 @Override
 public boolean isCorrectDatabaseImplementation(DatabaseConnection conn) throws DatabaseException {
   return "H2".equals(conn.getDatabaseProductName());
 }