Statement.executeUpdate()
データベースにデータを挿入するために使用する必要があります。したがって、すべてのパラメータをSQL文字列に埋め込む必要があります。データベースでは、2つの列のタイプはdatetimeです。Date1とDate2クライアント側では、次のステートメントを使用します。
String SQLString = "INSERT INTO Position (" +
......
"Date1, " +
......
"Date2) " +
"VALUES(" +
......
//"2012-05-29 16:28:58.555" + ", " + // runtime error, always say error at 16
//"2012-05-29" + ", " + // no runtime error, but lost time and result date is also not correct
//"10-06-02" + ", " + // no runtime error, but it adds 2 days beginning at 1900-01-01 00:00:00.000
......
null
")";
誰かがDatetimeをSQL文字列に正しく埋め込む方法を教えてもらえますか?