Spring - Ingres RDBMS support in sql-error-codes.xml error code mapping file - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T06:21:40Zhttp://stackoverflow.com/feeds/question/1637385http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1637385/spring-ingres-rdbms-support-in-sql-error-codes-xml-error-code-mapping-file0Spring - Ingres RDBMS support in sql-error-codes.xml error code mapping fileAdrianhttp://stackoverflow.com/users/1814062009-10-28T13:51:30Z2009-11-06T09:31:41Z
<p>I have a Java project connecting to an Ingres database and using the Spring Framework. This issue is related to the error codes list configuration.</p>
<p>According to <a href="http://static.springsource.org/spring/docs/2.5.x/api/org/springframework/jdbc/support/SQLErrorCodesFactory.html" rel="nofollow">Spring Framework API</a>:</p>
<blockquote>
<p>Class SQLErrorCodes: JavaBean for
holding JDBC error codes for a
particular database. Instances of this
class are normally loaded through a
bean factory.</p>
<p>Used by Spring's
SQLErrorCodeSQLExceptionTranslator.
The file "sql-error-codes.xml" in this
package contains default SQLErrorCodes
instances for various databases.</p>
</blockquote>
<p>The default file is bundled in spring.jar, does not include error codes associated with Ingres RDBMS and it’s location is <code>org/springframework/jdbc/support/sql-error-codes.xml</code></p>
<p>This document "<a href="http://downloads.ingres.com/download/sql.pdf" rel="nofollow">Ingres 2006 SQL Reference Guide</a>", in Appendix D: SQLSTATE Values and Generic Error Codes, contains the complete list of Ingres RDBMS error codes.</p>
<p>The only relevant sample of sql-error-codes.xml file containing Ingress error codes is this <a href="http://jira.springframework.org/browse/SPR-5444" rel="nofollow">one</a>:</p>
<p>Quote:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans-2.0.dtd">
<!--
- Default SQL error codes for well-known databases.
- Can be overridden by definitions in a "sql-error-codes.xml" file
- in the root of the class path.
-
- If the Database Product Name contains characters that are invalid
- to use in the id attribute (like a space) then we need to add a property
- named "databaseProductName"/"databaseProductNames" that holds this value.
- If this property is present, then it will be used instead of the id for
- looking up the error codes based on the current database.
-->
<beans>
<bean id="INGRES" class="org.springframework.jdbc.support.SQLErrorCodes">
<property name="useSqlStateForTranslation">
<value>true</value>
</property>
<property name="badSqlGrammarCodes">
<value>22000,26000,42000,42500,42501,50000,5000A</value>
</property>
<property name="invalidResultSetAccessCodes">
<value>24000</value>
</property>
<property name="dataIntegrityViolationCodes">
<value>23500,23501,23502</value>
</property>
<property name="dataAccessResourceFailureCodes">
<value>08001</value>
</property>
<property name="cannotAcquireLockCodes">
<value>5000R</value>
</property>
<property name="cannotSerializeTransactionCodes">
<value>40001</value>
</property>
<property name="deadlockLoserCodes">
<value>40P01</value>
</property>
</bean>
</beans>
</code></pre>
<p>Can anyone suggest a more up-to-date and complete version?</p>
http://stackoverflow.com/questions/1637385/spring-ingres-rdbms-support-in-sql-error-codes-xml-error-code-mapping-file/1637549#16375490Answer by jitter for Spring - Ingres RDBMS support in sql-error-codes.xml error code mapping filejitterhttp://stackoverflow.com/users/1224282009-10-28T14:21:12Z2009-10-28T14:21:12Z<p>Extracted from the Ingres 9.3 documentation for you the SQL State Values and Generic Error Codes</p>
<p><a href="http://drop.io/ingres93sqlerrorref" rel="nofollow">Ingres 9.3 SQL Reference Guide - Appendix C: SQLSTATE Values and Generic Error Codes</a></p>
http://stackoverflow.com/questions/1637385/spring-ingres-rdbms-support-in-sql-error-codes-xml-error-code-mapping-file/1638033#16380331Answer by grantc for Spring - Ingres RDBMS support in sql-error-codes.xml error code mapping filegrantchttp://stackoverflow.com/users/118452009-10-28T15:32:06Z2009-10-28T15:41:19Z<p>The 9.3 SQLState codes can be obtained from <a href="http://docs.ingres.com/Ingres/9.3/OpenSQL%20Reference%20Guide/sqlstatevaluesgenericerrorcodes.htm" rel="nofollow">docs.ingres.com</a>. From speaking with the person who submitted the <a href="http://jira.springframework.org/browse/SPR-5444" rel="nofollow">JIRA ticket</a> there have been no further updates. Most errors are handled with the appropriate exception type. Similar to the PostgreSQL profile. </p>