JavaTM 2 Platform
Standard Ed. 6

介面 java.sql.Connection
的使用

使用 Connection 的軟體套件
java.sql 提供使用 JavaTM 程式語言存取並處理存儲在資料源(通常是一個關聯型資料庫)中的資料的 API。 
javax.sql 為通過 JavaTM 程式語言進行伺服器端資料源存取和處理提供 API。 
javax.sql.rowset JDBC RowSet 實作的標準介面和基礎類別。 
 

java.sqlConnection 的使用
 

返回 Connectionjava.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.sqlConnection 的使用
 

返回 Connectionjavax.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.rowsetConnection 的使用
 

參數型別為 Connectionjavax.sql.rowset 中的方法
 void CachedRowSet.acceptChanges(Connection con)
          將所有行更新、插入以及刪除更改傳播到支持此 CachedRowSet 物件的資料源,使用指定的 Connection 物件建立到資料源的連接。
 void CachedRowSet.execute(Connection conn)
          用資料填充此 CachedRowSet 物件,使用給定的連接來產生從中讀取資料的結果集。
 


JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only