我想使用 UCanAccess 更新备注字段中的日期时间和字符串。例如 - 2015 年 5 月 27 日系统:一些字符串,这是我必须在备忘录字段中更新的全部内容。
我尝试过的 - 我正在使用以下代码将日期转换为字符串:
DateFormat df = new SimpleDateFormat("yyyyMMdd");
Date today = Calendar.getInstance().getTime();
String reportDate = df.format(today);
然后像这样使用 ucanaccess 的更新查询:
st.executeUpdate(" update tblCaseInventory set fldContactNotes = " + reportDate + "' System : CAR Report '" + " where fldCaseNumber = " + rs1.getInt("fldCaseNumber"));
但我收到一个错误:
意外令牌:系统。
如何做到这一点?