I want to write a java program that acts as a user interface to a mysql database,the program should do the following:
1.connect to the database,show available tables in the database
2.display table data
3.modify table data (insert,edit,delete,sort) rows
I've tried to use JDBC only,but couldn't figure out a way to put the table data in a multidimensional array
is there an API i should be using instead of just JDBC?