DatabaseMetaData and ResultSet

how do you create a Scrollable ResultSet from a DatabaseMetaData?... A very simple question but I ended up in vain in searching the forum.
[160 byte] By [deandaniel] at [2007-9-26 1:25:23]
# 1
Those ResultSets that come from various methods of DatabaseMetaData are surely read-only, aren't they? So why do you need them to be scrollable?
DrClap at 2007-6-29 1:06:49 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 2
I want to retrieve all the valid tables in the database. I want it to be dynamic. I want the user to choose a database at runtime, then get all the tables. Is there a better way implementing this than getting the Tables ResultSet from DatabaseMetaData?
deandaniel at 2007-6-29 1:06:49 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...