Spring - Ingres RDBMS support in sql-error-codes.xml error code mapping file - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T06:21:40Z http://stackoverflow.com/feeds/question/1637385 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1637385/spring-ingres-rdbms-support-in-sql-error-codes-xml-error-code-mapping-file 0 Spring - Ingres RDBMS support in sql-error-codes.xml error code mapping file Adrian http://stackoverflow.com/users/181406 2009-10-28T13:51:30Z 2009-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>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans-2.0.dtd"&gt; &lt;!-- - 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. --&gt; &lt;beans&gt; &lt;bean id="INGRES" class="org.springframework.jdbc.support.SQLErrorCodes"&gt; &lt;property name="useSqlStateForTranslation"&gt; &lt;value&gt;true&lt;/value&gt; &lt;/property&gt; &lt;property name="badSqlGrammarCodes"&gt; &lt;value&gt;22000,26000,42000,42500,42501,50000,5000A&lt;/value&gt; &lt;/property&gt; &lt;property name="invalidResultSetAccessCodes"&gt; &lt;value&gt;24000&lt;/value&gt; &lt;/property&gt; &lt;property name="dataIntegrityViolationCodes"&gt; &lt;value&gt;23500,23501,23502&lt;/value&gt; &lt;/property&gt; &lt;property name="dataAccessResourceFailureCodes"&gt; &lt;value&gt;08001&lt;/value&gt; &lt;/property&gt; &lt;property name="cannotAcquireLockCodes"&gt; &lt;value&gt;5000R&lt;/value&gt; &lt;/property&gt; &lt;property name="cannotSerializeTransactionCodes"&gt; &lt;value&gt;40001&lt;/value&gt; &lt;/property&gt; &lt;property name="deadlockLoserCodes"&gt; &lt;value&gt;40P01&lt;/value&gt; &lt;/property&gt; &lt;/bean&gt; &lt;/beans&gt; </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#1637549 0 Answer by jitter for Spring - Ingres RDBMS support in sql-error-codes.xml error code mapping file jitter http://stackoverflow.com/users/122428 2009-10-28T14:21:12Z 2009-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#1638033 1 Answer by grantc for Spring - Ingres RDBMS support in sql-error-codes.xml error code mapping file grantc http://stackoverflow.com/users/11845 2009-10-28T15:32:06Z 2009-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>