我格式化我的JSpinner爲:SimpleDateFormat的值插入到MS分貝
SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy");
JSpinner.DateEditor de = new JSpinner.DateEditor(jSpinner1, "MM/dd/yyyy");
jSpinner1.setEditor(de);
,並嘗試JSpinner的值插入到MS DB:
String SQLString = "INSERT INTO Table1(DateToday)VALUES(?)";
stmt = con.prepareStatement(SQLString);
stmt.setDate(1, new java.sql.Date(sdf.format(jSpinner1.getValue())));
,但我仍然得到一個錯誤。
請給我一些幫助,如果你可以給任何示例代碼,以使其正確。
很多很多的感謝...
什麼是錯誤消息/堆棧跟蹤? – trojanfoe 2011-03-18 08:02:08