I want to insert date to the column Date of birth
dob is my JTextField name
Data type of that column is Datetime2
I have inserted two records ,but when I tried to insert another record it gives me error
Code:
"insert into table (firstname,lastname,dateofbirth) values(?,?,?)"
Code:
statement.setString(3,dob.getText());
Data type of that column is Datetime2
I have inserted two records ,but when I tried to insert another record it gives me error
Code:
Conversion failed when converting date and/or time from character string.