Menu

#38 Support for ResultSet having morethan 65536 number of rows

closed
nobody
None
5
2016-04-29
2010-07-07
Anonymous
No

Currently the CSVWriter is not able to support ResultSet having morethan 65536 number of rows.
I would be nicer to have such support for multi-files output if the records exceeds 65536.

Discussion

  • Scott Conway

    Scott Conway - 2010-12-25

    I believe this may be an limitation of the implementation of the ResultSet you are using. try parsing out the ResultSet yourself outside of CSVWriter and see if you hit the 65536 limitation. Try something like:

    public void countRowsInResultSet(java.sql.ResultSet rs)
    {
    int count = 0;
    while (rs.next())
    count++;

    System.out.println(count);

    }

     
  • Andrew Rucker Jones

    • status: open --> closed
     
  • Andrew Rucker Jones

    Cleaning up old issues. If this still needs attention, please open a new ticket.

     

Log in to post a comment.