I have a form on which I want to access a date from the database and show in jDateChooser for a particular record. How do I get the date from the database table and how do I set that date in jDateChooser? The datatype on my database is date.
JDateChooser.setText(a.getValueAt(selectedRowIndex, 5).toString());
this is my code and it produces error.