Bug in ResultSet.moveToCurrentRow - Mailing list pgsql-jdbc

From Darin Ohashi
Subject Bug in ResultSet.moveToCurrentRow
Date
Msg-id F17255C2B596D3119A5600508B44FA6803BB25D3@courier.maplesoft.on.ca
Whole thread Raw
Responses Re: Bug in ResultSet.moveToCurrentRow  (Kris Jurka <books@ejurka.com>)
List pgsql-jdbc
I believe there is a bug in ResultSet.moveToCurrentRow with pgsql 7.3.3 and
pgsql-jdbc 7.3.3 build 110.  If the current row of the result set is the
beforeFirst() row, call moveToInsertRow() and then moveToCurrentRow().  The
moveToCurrentRow throws an ArrayIndexOutOfBoundsException.

Here is code to reproduce the problem:

import java.sql.*;
import java.util.*;
import java.lang.*;

class SQLBug
{
    public static void main( String args[] )
        throws Exception
    {
        Properties prop;
        Driver driver;
        Connection con;
        Statement stat;
        ResultSet rs;

        driver = (Driver)Class.forName( "org.postgresql.Driver" ).newInstance();

        prop = new Properties();

        prop.setProperty( "user", "test" );
        prop.setProperty( "password", "test" );
        con = driver.connect( "jdbc:postgresql://localhost:5432/Test", prop );

        stat = con.createStatement();

        stat.executeUpdate( "CREATE TABLE sqlbug ( id INTEGER, PRIMARY KEY (id)
)" );

        stat.executeUpdate( "INSERT INTO sqlbug(id) VALUES( 1 )" );
        stat.executeUpdate( "INSERT INTO sqlbug(id) VALUES( 2 )" );
        stat.executeUpdate( "INSERT INTO sqlbug(id) VALUES( 3 )" );

        rs = stat.executeQuery( "SELECT * FROM sqlbug WHERE id = 2" );

        rs.moveToInsertRow();

        /* the following call throws an ArrayIndexOutOfBounds */

        rs.moveToCurrentRow();
    }
}

The Exception looks like this:

Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -1 < 0
        at java.util.Vector.elementAt(Vector.java:437)
        at
org.postgresql.jdbc2.AbstractJdbc2ResultSet.moveToCurrentRow(AbstractJdbc2Result
Set.java:674)
        at SQLBug.main(SQLBug.java:42)

Darin

pgsql-jdbc by date:

Previous
From: Nic Ferrier
Date:
Subject: Re: ResultSet implementation
Next
From: Barry Lind
Date:
Subject: Re: nit-pick optimization for findColumn()