Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6449421

ResultSet#getString returns trailing nulls

    XMLWordPrintable

Details

    Description

      FULL PRODUCT VERSION :
      java version "1.5.0_07"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_07-b03)
      Java HotSpot(TM) Client VM (build 1.5.0_07-b03, mixed mode, sharing)

      ADDITIONAL OS VERSION INFORMATION :
      Windows XP SP-2

      EXTRA RELEVANT SYSTEM CONFIGURATION :
      Tested with Microsoft Access database.

      A DESCRIPTION OF THE PROBLEM :
      sun.jdbc.odbc.JdbcOdbcResultSet#getString returns trailing nulls

      See source code below

      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      See source code below

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
      myRs.getString( STRING1): "Here are only 16 + 16 more chars"
      ACTUAL -
      myRs.getString( STRING1): "Here are only 16 + 16 more chars\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000"

      REPRODUCIBILITY :
      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      /*
       * JdbcOdbcResultSetTest.java
       * JUnit based test
       *
       * Created on 11. Juni 2006, 02:33
       */

      package sun.jdbc.odbc;

      import junit.framework.*;
      import java.sql.*;

      /**
       *
       * @author Ulf Zibis
       */
      public class JdbcOdbcResultSetTest extends TestCase {
        
        private static final String URL = "jdbc:odbc:TestData";
        private static final String TABLE = "Test1";
        private static final String ID = "id";
        private static final String STRING1 = "string1";
        private static final String INT1 = "int1";
        private static final String EMPTY_QUERY = "SELECT * FROM "+TABLE+" WHERE "+ID+"=0";
        private static final String ORDERED_QUERY = "SELECT * FROM "+TABLE+" ORDER BY "+ID;
        private static final String STRING32CHARS = "Here are only 16 + 16 more chars";
        private static final String UPDATED19CHARS = "updated to 19 chars";
        private static final String INSERTED8CHARS = "inserted";
        
        private Connection myCon = null;
        private Statement myStmt;
        private JdbcOdbcResultSet myRs;
        
        public JdbcOdbcResultSetTest(String testName) {
          super(testName);
          System.out.println("Construct JdbcOdbcResultSetTest("+testName+") !!");
        }
        protected void finalize() throws Throwable {
          super.finalize();
          try { if (myCon != null) myCon.close(); }
          catch (Throwable t) { t.printStackTrace(); }
        }
        
        protected void setUp() throws Exception {

          Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); // Obsolete in JDK 6.0
          myCon = DriverManager.getConnection( URL);
          Statement stmt = myCon.createStatement();
          try {
            ResultSet rs = stmt.executeQuery("SELECT COUNT(*) FROM "+TABLE);
            rs.next();
            System.out.println( TABLE+" had "+rs.getInt( 1)+" record(s).");
            stmt.executeUpdate("DROP TABLE "+TABLE);
          }
          catch (SQLException se) {
            if (se.getErrorCode() == -1305)
              System.out.println( TABLE+" was not existent.");
            else throw se;
          }
          stmt.executeUpdate("CREATE TABLE "+TABLE+"( "+ID+" COUNTER PRIMARY KEY, "
                                                      +STRING1+" VARCHAR(100), "
                                                      +INT1+" INT)");
          System.out.println("New empty table "+TABLE+" created !");
          stmt.close();
          myStmt = myCon.createStatement( ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE);
        }
        protected void tearDown() throws Exception {
          try { if (myCon != null) myCon.close(); myCon = null;}
          catch (Throwable t) { t.printStackTrace(); }
        }

        public void testExecuteInsert() throws Exception {
          System.out.println("testExecuteInsert()");
          try {
            Statement stmt_ = myCon.createStatement();
            int result = stmt_.executeUpdate("INSERT INTO "+TABLE
                                            +" VALUES (7,'"+STRING32CHARS+"',99)");
            assertEquals("stmt_.executeUpdate('INSERT INTO ...': ",
                         1, result);
            stmt_.close();
            
            myRs = (JdbcOdbcResultSet)myStmt.executeQuery( ORDERED_QUERY);
            myRs.next();

            int resultId = ((Integer)myRs.getObject( 1)).intValue();
            assertEquals("myRs.getObject( 1) (autoincremented id): ",
                         7, resultId);
            String resultSTRING1 = myRs.getString( STRING1);
            assertEquals("myRs.getString( STRING1): ",
                         STRING32CHARS, resultSTRING1);
          } catch (SQLException se) {
            Exception e = new Exception( se+", Error: "+se.getErrorCode()+", SQLState: "+se.getSQLState());
            e.setStackTrace( se.getStackTrace());
            //e.initCause( se);
            throw e;
          }
        }

        public static Test suite() {
          TestSuite suite = new TestSuite(JdbcOdbcResultSetTest.class);
          
          return suite;
        }
        
        public static void main (String[] args) {
                junit.textui.TestRunner.run(suite());
        }

      }

      ---------- END SOURCE ----------

      Attachments

        Activity

          People

            lancea Lance Andersen
            ndcosta Nelson Dcosta (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: