我正在使用 swingxLabs 的组件 jXDatePicker1 以图形格式选择日期并尝试将其存储在 derby 制作的数据库中。我的代码是这样的:
Date date=jXDatePicker1.getDate();
PreparedStatement statement = connect
.prepareStatement("INSERT INTO BILLING (DATE, DHRNUMBER) VALUES('"+date+"', "+dhrNumber+")");
我得到的错误是:
java.sql.SQLDataException: The syntax of the string representation of a datetime value is incorrect.
我做对了吗?或者可以有其他方法来解决这个问题。
谢谢