I have a small application which uses Swing Frames and an access database.
I want to diplay output data from the database in a table like format using Swing or any other method. How can this be done.
Can someone give a simple example.
Printable View
I have a small application which uses Swing Frames and an access database.
I want to diplay output data from the database in a table like format using Swing or any other method. How can this be done.
Can someone give a simple example.
Hi,
In Swings you have JTable which can be used for displaying, modifying purposes at the front end. After retrieving the data from the database you can populate the JTable object and can display at the front end. For furthur info refer the JTable API.
It is javax.swing.JTable
Narayana :-)