Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

java: Hos to get the size of a returned result set?

Options
  • 02-02-2005 11:50am
    #1
    Registered Users Posts: 4,222 ✭✭✭


    As the topic asks, cant seem to be able to do this

    for example if i execute a query that returns more than one result

    ResultSet rs = statement.executeQuery(QUERY);

    how do i get the size of the result set?
    I thought

    rs.getFetchSize();

    would do it but it doesnt seem to.

    using NetBeans and j2sdk 1.5.0


Comments

  • Registered Users Posts: 1,994 ✭✭✭lynchie


    If you need to know the size of it before you process it, use scrollable resultsets, go to the last row and call rs.getRow() on it.


Advertisement