the result set

i use the Queury SELECT but i don't know how to display the result.for eXample:"SELECT Date FROM Stat"could i have a new table contsain the result?
[201 byte] By [student14a] at [2007-11-26 18:33:06]
# 1
Look at the following classes:java.sql.Statementjava.sql.PreparedStatementjava.sql.ResultSet
iklestevea at 2007-7-9 6:07:11 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 2
do look at those classes.i hope you don't have a column named 'Date' in a table. That's a SQL keyword, bound to cause trouble. it's not very descriptive or self-documenting, either? birth_date? due_date? hiring_date? you can do better than that.%
duffymoa at 2007-7-9 6:07:11 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 3
Christ, read the tutorial that I told you to look at earlier: http://java.sun.com/docs/books/tutorial/jdbc/%
duffymoa at 2007-7-9 6:07:11 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...