2003-12-01から1日間の記事一覧

雑記

夜9時に寝て2時に起きた。その後5時までビデオを見てたら思いっきり寝過ごした。

Jakarta Commons DbUtils

DbUtils.closeQuietly(Connection他)が地味に嬉しいかも。 finally{ if(con != null){ try{ con.close() } catch(SQLException e){ // 例外は無視 } } } が finally{ DbUtils.closeQuietly(con); } になる。ResultSetのBeanへのハンドリングは昔StrutsのBean…