I am using MySQL Database. I have a database which contains tables. The number of tables are not constantin database. In my application there is a process which creats a new table into the database. I want to show these tablesnames in JComboBox.
I used following query to retrieve the table names.
show tables in dbinfo;
Now I want to retrieve the table names in sorted order. But the sorting should be done according to the creation date of the table.
is there any query which gives result as I required.
Thanks You!
Try this