Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 71888 invoked from network); 16 Apr 2007 10:57:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 Apr 2007 10:57:36 -0000 Received: (qmail 40978 invoked by uid 500); 16 Apr 2007 10:57:42 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 40939 invoked by uid 500); 16 Apr 2007 10:57:42 -0000 Mailing-List: contact derby-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: Delivered-To: mailing list derby-dev@db.apache.org Received: (qmail 40930 invoked by uid 99); 16 Apr 2007 10:57:42 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Apr 2007 03:57:42 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Apr 2007 03:57:35 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 767B2714069 for ; Mon, 16 Apr 2007 03:57:15 -0700 (PDT) Message-ID: <32341051.1176721035482.JavaMail.jira@brutus> Date: Mon, 16 Apr 2007 03:57:15 -0700 (PDT) From: "Christian Schwanke (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Closed: (DERBY-2550) Types.NULL is not accepted when using setNull on a PreparedStatment In-Reply-To: <16362523.1176708795289.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DERBY-2550?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Christian Schwanke closed DERBY-2550. ------------------------------------- Resolution: Won't Fix Derby Info: (was: [Existing Application Impact, Patch Available]) Derby's behaviour is correct - bug can be worked around using different spring methods. > Types.NULL is not accepted when using setNull on a PreparedStatment > ------------------------------------------------------------------- > > Key: DERBY-2550 > URL: https://issues.apache.org/jira/browse/DERBY-2550 > Project: Derby > Issue Type: Bug > Components: JDBC > Affects Versions: 10.2.2.0 > Environment: Ubuntu 6.10, Java 5 and Mac OSX 10.4, Java5 > Spring 2.x > Derby "Embedded" mode > Reporter: Christian Schwanke > Attachments: SimpleEmbeddedTestCase.java > > > Inserting data into table using a PreparedStatement will fail, if the setNull() method is used with Types.NULL. > I have tracked down the problem to the method "isJDBCTypeEquivalent(int existingType, int jdbcTypeId)" in class "org.apache.derby.iapi.types.DataTypeDescriptor" (Line 922). > This method checks the current column type against the type specified by the application. The setNull() method will throw an error, if the types do not match. The problem here is, that isJDBCTypeEquivalent will not accept Types.NULL as an valid equivalent to the column type. > When writing the JDBC code by hand one can avoid the problem - but this is quite annoying since the Jdbc-Support provided by the Spring-Framework will use setNull() with Types.NULL making it impossible to use Derby with Spring's plain JdbcTemplate. > Example: > String preparedSql = "INSERT INTO demo (stringValue) VALUES (?)"; > PreparedStatement pstmt = con.prepareStatement(preparedSql); > // this will work, since the given type is equivalent > pstmt.setString(1, null); > pstmt.execute(); > // this will fail, since Types.NULL is not recognized as equivalent > pstmt.setNull(1, Types.NULL); > pstmt.execute(); > The exception thrown is > "java.sql.SQLException: An attempt was made to get a data value of type 'VARCHAR' from a data value of type '0'" > As far as I can see, it is sufficient to modify the first part of the isJDBCTypeEquivalent-method. At least, it solved my problems. > Current: > // Any type matches itself. > if (existingType == jdbcTypeId) > return true; > Fix: > // Any type matches itself. > if (existingType == jdbcTypeId || jdbcTypeId == Types.NULL) > return true; > I've attached a simple TestCase to reproduce the problem. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.