トップ
新規
一覧
単語検索
最終更新
ヘルプ
ログイン
アールメカブ
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.j...
HelloWorldJDBCPostgreSQL
終了行:
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.j...
HelloWorldJDBCPostgreSQL
ページ名: