• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Searching a record in resultset

 
Ranch Hand
Posts: 18944
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In a ResultSet can we search records from top to bottom and bottom to top at the same time and how. If so, is it faster than searching from one side.
 
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Scrolling through result sets bi-directionally can be done with a JDBC 2.0 database driver, but cannot be done with a JDBC 1.x driver.
Anjali

Originally posted by bhupathiraju gayatridevi:
In a ResultSet can we search records from top to bottom and bottom to top at the same time and how. If so, is it faster than searching from one side.


 
Ranch Hand
Posts: 113
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It wouldn't be faster to scroll from both sides since the processing time would be the same (i.e. if you have 10 records to process then you have to loop through all 10 records one way or the other)
another point is that your code would be a mess if you scrolled from both sides.
the standard way to do it is
while (rset.next())
{
// do your processing
}
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic