我无法将datatime的正确格式放入insert语句(更多的是prepared语句)。
从html(作为setter)输入变量为“string”-
<input style="border:1px solid grey; width: 100%" type="datetime-local" id="maintsd" name="maintsd">
设定者:
public void setMaintsd(String maintsd) {
this.maintsd = maintsd;
}
准备好的声明:
ps.setTimestamp(2, obj_modeSwitch_Bean.getMaintsdI());
setter将值作为 2020-09-05T23:59
现在,prepared语句没有设置settimestamp(my function to fetch)或setdate(func to fetch datetime)
准备好的语句或参数有变化吗?
1条答案
按热度按时间b09cbbtk1#
preparedstatement#设置对象
下面是一个例子:
你的情况应该是这样的