I have a JavaFX TableView representing job data that is populated by a MySQL database. All the data displays fine except two date columns, both of which are represented YYYY-MM-DD. What I would like to do is have this the other way around i.e DD-MM-YYYY.
+--------------+------------+
| Date Created | Deadline |
+--------------+------------+
| 2015-09-07 | 2015-09-14 |
| 2015-09-07 | 2015-09-14 |
+--------------+------------+
Would it be best to do this by modifying the MySQL query I use to populate the table: final String finalQuery = "SELECT * FROM kitJobs ORDER BY kitJobs.CaseNO ASC";
? If so, how would I modify the query to get the desired date format?