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 / ravi
the is a syntax in sql 'limit'....using this u can get
desired number of rows...
suppose database having 1000 rows..
query will be:
select * from table limit 100;
first 100 rcds will be selected...
| Is This Answer Correct ? | 2 Yes | 5 No |
Post New Answer View All Answers
Which is better odbc or jdbc?
What are jdbc?
What is drivermanager in jdbc?
What are the advantages of using preparedstatement in java?
How do I insert an image file (or other raw data) into a database?
What are the higher level apis under development on top of jdbc currently?
What are the three basic components of the odbc architecture?
What is the purpose of jdbc?
What are the differences between statement and preparedstatement interface?
What is executeupdate in java?
What is serialization and deserialization in java programming?
What is java soft framework?
What are the three parts of a jdbc url?
What is difference between jdbc and odbc?
What causes the "No suitable driver" error?