I can appreciate why Java has so many different data classes. In the longrun, having all these special classes must allow for extremely powerful apps with little code. That's great and all, however, learning all of these data classes is a total mindscrew coming from other platforms!
This being said, I am trying to wrap my head around ResultSet and Cursors. I am trying to utilize opencsv3 to dump my database into a .csv file, however, opencsv requires I use a ResultSet and not a Cursor to do so. I’ve looked everywhere for an explanation as to how I can pull a ResultSet from my sqlite database, it appears it’s not supported by Android?
If ResultSet is not supported, is there a simple way to convert my Cursor to a ResultSet? At this point, I am thinking I will just read the database using a Cursor and write my own damn .csv Class instead of using opencsv. Any suggestions would be very much appreciated, I guarantee you I will reply and accept your answer if applicable!
Thank you!