HELP! SOMEBODY!

HElllo PPl,

I need these answers ASAP

How do i view data from a specific part of my database... for instance if i had listings of trees in a certain state... how do i view the trees in that paticular state....

I have created a general table in my database that's called TreeFile....

Lastly,

Is there a way to view a report that has been generated from my database on my screen interface....

Thanx for al the help....

~John~

[492 byte] By [SanDMaN] at [2007-9-26 1:39:01]
# 1
Give us more information please. You can start with what database you are using.Klint
saen at 2007-6-29 2:27:39 > top of Java-index,Archived Forums,Java Programming...
# 2
OK Klint... I'm using Microsoft Access.... And also... how do i display the queries i have on my database to my screen interface... ThanxJohn
SanDMaN at 2007-6-29 2:27:39 > top of Java-index,Archived Forums,Java Programming...
# 3
You need to use the JDBC-ODBC bridge and query your records into a ResultSet. Then you can iterate through this ResultSet and display the data to your Java program's screen interface. The Java tutorial section on JDBC can help you more with this.
swatdba at 2007-6-29 2:27:39 > top of Java-index,Archived Forums,Java Programming...
# 4

Set up the ODBC commection on your Control Panel.

I cannot tell you how to display your data on screen but one possibility is to create a JTable and put your data in there. You will find more on how to retrieve data in the JDBC forum.

Youl will need some skills in AWT/Swing, JDBC and SQL.

KLint

saen at 2007-6-29 2:27:39 > top of Java-index,Archived Forums,Java Programming...