SQLite Java Wrapper/JDBC Driver retreive values from TableResult

I'm using the SQLite Java Wrapper/JDBC Driver http://www.ch-werner.de/javasqlite/overview-summary.html to query a sqlite database. I am looking for a way to retreive values from a TableResult. Something like next()?

This doesn't seem to work:

TableResult rs = db.get_table("select * from contacts where account like '%q'", qargs);

while(rs.next()){

};

Is there an equivalent to next() for sqlite TableResults?

[450 byte] By [qt4x11a] at [2007-11-27 6:29:55]
# 1
Is this possible or should I just save the tableResult as an array and loop thru it to get to the values?
qt4x11a at 2007-7-12 17:54:11 > top of Java-index,Java Essentials,New To Java...