Notice
Recent Posts
Recent Comments
Link
«   2025/08   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
31
Tags
more
Archives
Today
Total
관리 메뉴

devNyong

[Oracle] Caused by: oracle.jdbc.OracleDatabaseException: ORA-01861 본문

error

[Oracle] Caused by: oracle.jdbc.OracleDatabaseException: ORA-01861

devNyong 2022. 9. 29. 11:48

ERROR  : ORA-01861  

 

I am trying to insert data into an existing table and keep receiving an error.

This happens because A literal with a format string.

 

 

request 

{
  date : '2022-09-25 16:17:59'
}

 

receive

String date;

 

solution 

TO_DATE(#{date},'YYYY-MM-DD HH24:MI:SS')

 

 

 

Comments