i have 1000 records in resultset, how to get first 100
records from resultset, because resultset fetch all 1000
records at a time?
Answer Posted / dmk.java@gmail.com
query should be prepare like this
select * from tab_name where rownum <= 100
| Is This Answer Correct ? | 6 Yes | 3 No |
Post New Answer View All Answers
How does a custom RowSetReader get called from a CachedRowSet?
How many types of jdbc drivers are available?
How to use JDBC API to call Stored Procedures?
What is resultset?
What driver should I use for scalable Oracle JDBC applications?
How can I use the JDBC API to access a desktop database like Microsoft Access over the network?
Why “no suitable driver” error occurs?
Which package is used for jdbc application?
What are the three basic components of the odbc architecture?
What is the limitation of PreparedStatement and how to overcome it?
Name the method, which is used to prepare a callablestatement.
What is jdbc resultsetmetadata interface?
How can I connect mysql or oracle with java?
How to move the cursor in scrollable resultset ?
What is difference between statement and preparedstatement in jdbc?