|
JavaTM Platform Standard Ed. 6 |
|||||||||
前 次 | フレームあり フレームなし |
Connection を使用しているパッケージ | |
---|---|
java.sql | JavaTM プログラミング言語を使用してデータソース (通常はリレーショナルデータベース) のデータにアクセスして処理する API を提供します。 |
javax.sql | サーバー側のデータソースアクセスと JavaTM プログラミング言語を使った処理に使用する API を提供します。 |
javax.sql.rowset | JDBC RowSet 実装の標準インタフェースと基底クラスです。 |
java.sql での Connection の使用 |
---|
Connection を返す java.sql のメソッド | |
---|---|
Connection |
Driver.connect(String url,
Properties info)
指定された URL にデータベース接続を試みます。 |
Connection |
DatabaseMetaData.getConnection()
このメタデータオブジェクトを生成した接続を取り出します。 |
Connection |
Statement.getConnection()
この Statement オブジェクトを生成した Connection オブジェクトを取得します。 |
static Connection |
DriverManager.getConnection(String url)
指定されたデータベースの URL への接続を試みます。 |
static Connection |
DriverManager.getConnection(String url,
Properties info)
指定されたデータベースの URL への接続を試みます。 |
static Connection |
DriverManager.getConnection(String url,
String user,
String password)
指定されたデータベースの URL への接続を試みます。 |
javax.sql での Connection の使用 |
---|
Connection を返す javax.sql のメソッド | |
---|---|
Connection |
DataSource.getConnection()
この DataSource オブジェクトが表すデータソースへの接続の確立を試みます。 |
Connection |
PooledConnection.getConnection()
Connection オブジェクト (この PooledConnection オブジェクトが表す物理接続のハンドル) を作成し、返します。 |
Connection |
RowSetInternal.getConnection()
この RowSet オブジェクトに渡された Connection オブジェクトを取得します。 |
Connection |
DataSource.getConnection(String username,
String password)
この DataSource オブジェクトが表すデータソースへの接続の確立を試みます。 |
javax.sql.rowset での Connection の使用 |
---|
Connection 型のパラメータを持つ javax.sql.rowset のメソッド | |
---|---|
void |
CachedRowSet.acceptChanges(Connection con)
指定された Connection オブジェクトを使ってデータソースへの接続を確立して、CachedRowSet オブジェクトの配下のデータソースへ行の更新、挿入、削除などの変更をすべて伝達します。 |
void |
CachedRowSet.execute(Connection conn)
データソースとなる結果セットを生成するための指定の接続を使用して、この CachedRowSet オブジェクトにデータを読み込みます。 |
|
JavaTM Platform Standard Ed. 6 |
|||||||||
前 次 | フレームあり フレームなし |
Copyright 2009 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Documentation Redistribution Policy も参照してください。