InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is used to limit the number of rows returned?(a) setMaxRows(int i)(b) setMinRows(int i)(c) getMaxrows(int i)(d) getMinRows(int i) |
|
Answer» Correct answer is (a) setMaxRows(int i) To explain: setMaxRows(int i) method is used to limit the number of rows that the database returns from the query. |
|