So what I'm trying to is to get the user to input a date using Jdatechooser in eclipse, I then need to input this selected date in my database. I keep getting the error of invalid date time format. This is my code : try { Connection conn=DriverManager.getConnection("jdbc:ucanaccess://E:\\testing.accdb"); String sql="insert into Homework (Description,Subject_ID,Name,Due_Date) values (?,?,?,?) "; PreparedStatement pst=conn.prepareStatement(sql); pst.setString(1, textFieldDes.getText()); pst.setString(2,...