2009-12-01から1ヶ月間の記事一覧

Caused by: java.sql.SQLException: Value '0000-00-00' can not be represented as java.sql.Date の対応方法

zeroDateTimeBehavior=convertToNull を付ける。 JDBCドライバの中で'0000-00-00'がNULLに置換される。 <dataSource driver="org.gjt.mm.mysql.Driver" url="jdbc:mysql://localhost/hoge?zeroDateTimeBehavior=convertToNull" user="hoge" password="hoge!" useUnicode="true" characterEncoding="UTF-8" /></datasource>

DELETE 文で 複数の表の参照結果を使ってレコードを削除するひとつの方法

DELETE TableA FROM TableA, TableB WHERE TableA.code=TableB.code AND TableA.type=TableBtype