2008-08-12から1日間の記事一覧

【調査】SET TRANSACTION READ ONLYの挙動

これを実行後の挙動 COMMIT; SET TRANSACTION READ ONLY;http://www.digital-wks.com/transaction.html ・そのトランザクション内でinsert,update,delete不可 ・別のトランザクション内でinsert,update,deleteしても selectの結果が変わらない ・commitする…

【調査】postgresのJDBCドライバはどれを使えば良い?

【結論】JDK1.5ならJDBC3、JDK1.6ならJDBC 4 http://jdbc.postgresql.org/download.html JDK 1.1 - JDBC 1. Note that with the 8.0 release JDBC 1 support has been removed, so look to update your JDK when you update your server. JDK 1.2, 1.3 - JDB…