Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
TimeStamp をデータベースに挿入する際に問題があります (フォーマットに問題があります。データベースは を受け入れますdd.MM.yyyy)。を変換してDateからTimeStampデータベースに挿入すると、失敗します。の形式TimeStampはyyyy-MM-dd.
dd.MM.yyyy
Date
TimeStamp
yyyy-MM-dd
アイデアや提案はありますか?
DBが本当にdd.MM.yyyyを要求し、そのようなものを使用するオプションがない場合makedate(format, myDateInTheGivenFormat)は、Java内で自分で再フォーマットを行う必要があります。
makedate(format, myDateInTheGivenFormat)
SimpleDateFormatDBのニーズに応じて日付を再フォーマットするために使用します。
SimpleDateFormat
あなたを助けることができるjava.sql.Dateをチェックしてください