Skip to content

Commit

Permalink
0000965: Firebird and Interbase report unique constraint error code o…
Browse files Browse the repository at this point in the history
…f 335544349
  • Loading branch information
chenson42 committed Dec 20, 2012
1 parent fc2e357 commit 6d0913e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -12,7 +12,7 @@ public class FirebirdJdbcSqlTemplate extends JdbcSqlTemplate {
public FirebirdJdbcSqlTemplate(DataSource dataSource, SqlTemplateSettings settings,
SymmetricLobHandler lobHandler, DatabaseInfo databaseInfo) {
super(dataSource, settings, lobHandler, databaseInfo);
primaryKeyViolationCodes = new int [] {335544665};
primaryKeyViolationCodes = new int [] {335544665, 335544349};
}

@Override
Expand Down
Expand Up @@ -12,7 +12,7 @@ public class InterbaseJdbcSqlTemplate extends JdbcSqlTemplate {
public InterbaseJdbcSqlTemplate(DataSource dataSource, SqlTemplateSettings settings,
SymmetricLobHandler lobHandler, DatabaseInfo databaseInfo) {
super(dataSource, settings, lobHandler, databaseInfo);
primaryKeyViolationCodes = new int [] {335544665};
primaryKeyViolationCodes = new int [] {335544665,335544349};
}

@Override
Expand Down

0 comments on commit 6d0913e

Please sign in to comment.