答案 0 :(得分:2)
答案 1 :(得分:0)
上面的答案很好。如果要在数据库级别更改格式,请使用此格式。
在PreparedStatement
:
to_timestamp( ? ,'dd-mm-yyyy %h:%i:%s')
格式。 to_date(dateAsString ,'DD-MM-RR HH24:MI:SS')
格式。to_timestamp( ? ,'dd-mm-yyyy')
格式。to_date(? ,'DD-MM-RR')
格式。在dateAsString
中设置PreparedStatement
。
String dateAsString = httpRequest.getParameter("form-name-for-the-date-here");