Re: [JDBC] Patch for jdbc2 ResultSet.java

2001-09-07 Thread Bruce Momjian
Sorry, I see it now. > > > Dave Harkness wrote: > > At 12:41 PM 9/5/2001, Joseph Shraibman wrote: > > > >> new patch: > > > > > > There still seems to be an error with the same if-block. > > > > ! if (index>=-rows.size()) > > ! internalIndex=rows.size()+index; > > > > becomes

Re: [JDBC] Patch for jdbc2 ResultSet.java

2001-09-07 Thread Bruce Momjian
Can I have a new version of this for application? > > > Dave Harkness wrote: > > At 12:41 PM 9/5/2001, Joseph Shraibman wrote: > > > >> new patch: > > > > > > There still seems to be an error with the same if-block. > > > > ! if (index>=-rows.size()) > > ! internalIndex=rows.s

Re: [JDBC] Patch for jdbc2 ResultSet.java

2001-09-06 Thread Joseph Shraibman
Dave Harkness wrote: > At 12:41 PM 9/5/2001, Joseph Shraibman wrote: > >> new patch: > > > There still seems to be an error with the same if-block. > > ! if (index>=-rows.size()) > ! internalIndex=rows.size()+index; > > becomes > > ! if (index > -rows_size) > ! inte

Re: [JDBC] Patch for jdbc2 ResultSet.java

2001-09-05 Thread Dave Harkness
At 12:41 PM 9/5/2001, Joseph Shraibman wrote: >new patch: There still seems to be an error with the same if-block. ! if (index>=-rows.size()) ! internalIndex=rows.size()+index; becomes ! if (index > -rows_size) ! internalIndex = rows_size+index; Note that the original

Re: [JDBC] Patch for jdbc2 ResultSet.java

2001-09-05 Thread Joseph Shraibman
Barry Lind wrote: > Joseph, > > In looking at this patch it looks OK, except for the following change: > > > ! if (index>=-rows.size()) > > --- 725,737 > > ! if (index > rows_size) > > I haven't looked at the entire method, but the change you made seems > incorrect. >

Re: [JDBC] Patch for jdbc2 ResultSet.java

2001-09-05 Thread Barry Lind
Joseph, In looking at this patch it looks OK, except for the following change: > ! if (index>=-rows.size()) > --- 725,737 > ! if (index > rows_size) I haven't looked at the entire method, but the change you made seems incorrect. If you want this patch to be applied it