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