Skip to content

Commit

Permalink
Add of new sybase IQ productname to supported names
Browse files Browse the repository at this point in the history
  • Loading branch information
yboujallab committed Jul 10, 2015
1 parent 5432929 commit 44d493e
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,9 @@ public String getShortName() {
@Override
public boolean isCorrectDatabaseImplementation(DatabaseConnection conn) throws DatabaseException {
return "Adaptive Server Anywhere".equalsIgnoreCase(conn.getDatabaseProductName())
|| "SQL Anywhere".equalsIgnoreCase(conn.getDatabaseProductName())
|| "Adaptive Server IQ".equalsIgnoreCase(conn.getDatabaseProductName());
|| "SQL Anywhere".equalsIgnoreCase(conn.getDatabaseProductName())
|| "Adaptive Server IQ".equalsIgnoreCase(conn.getDatabaseProductName())
|| "Sybase IQ".equalsIgnoreCase(conn.getDatabaseProductName());
}

@Override
Expand Down

0 comments on commit 44d493e

Please sign in to comment.