Re: [BUGS] jdbc2 bug in absolute (ResultSet.java)

2000-06-14 Thread Bruce Momjian
Thanks. I will back-patch these in to 7.0.X. > I'm the one who posted this question and also posted the patch to fix it. > Thanks for including it. The version of the JDBC driver in the cvs fixes > all the problems I know of regarding indexing (I re-wrote > absolute). Absolute and relative do

Re: [BUGS] jdbc2 bug in absolute (ResultSet.java)

2000-06-14 Thread Travis Bauer
I'm the one who posted this question and also posted the patch to fix it. Thanks for including it. The version of the JDBC driver in the cvs fixes all the problems I know of regarding indexing (I re-wrote absolute). Absolute and relative do not work properly in the 7.0 driver. Thanks, --

Re: [BUGS] jdbc2 bug in absolute (ResultSet.java)

2000-06-13 Thread Bruce Momjian
> The "absolute" method is called by the relative method to change the > cursor position. However, I noticed that absolute does not change > current_row, it only loads the data. > > Shoudn't absolute contain the following line : > > current_row=index; > The current code shows: curren

Re: [BUGS] jdbc2 bug in absolute (ResultSet.java)

2000-05-25 Thread Travis Bauer
You also need to remove the condition causing the procedure to return falsi if index==0. I've changed it in my code, and it fixed a few bugs that were cropping up. Travis Bauer | CS Grad Student | IU |www.cs.indiana.edu/~trbauer --

[BUGS] jdbc2 bug in absolute (ResultSet.java)

2000-05-25 Thread Travis Bauer
The "absolute" method is called by the relative method to change the cursor position. However, I noticed that absolute does not change current_row, it only loads the data. Shoudn't absolute contain the following line : current_row=index;