DB_JDBC の変更点 - アールメカブ

アールメカブ


DB_JDBC の変更点



JDBCインストール PostgreSQLの場合

http://jdbc.postgresql.org/download.html
より
PostgreSQL 7.2.x 
Java2
をダウンロードし,ソースでは
 try {
  // ドライバクラスをロード PostgreSQLの場合
  Class.forName("org.postgresql.Driver"); // PostgreSQLの場合
  Connection con =
    DriverManager.getConnection("jdbc:postgresql:ishida",//データベース名
       "usrs", //ユーザ名
       ""); // パスワード
 
     // ステートメントオブジェクトを生成
     Statement stmt = con.createStatement();
     String sql = "SELECT * FROM myref"; // テーブル名
  }

実行時にパスを指定する.
    java  -classpath /home/ishida/source/postgres/pg72jdbc2.jar:./ HelloWorldJDBCPostgreSQL
 java -classpath /home/ishida/source/postgres/pg72jdbc2.jar:./
 HelloWorldJDBCPostgreSQL