jdbc鏈結oracle資料庫

2021-10-12 12:47:38 字數 651 閱讀 7677

jdbc的六大步驟:

載入驅動

獲取連線

獲取執行sql語句物件

執行sql語句

處理結果集

關閉資源

url:統一資源定位器

oracle url: jdbc:oracle:thin:@localhost:1521:databasename

jdbc:oracle:thin:@127.0.0.1:1521:databasename

mysql url:jdbc:mysql://localhost:3306/databasename

thin:小型驅動,驅動方式

@localhost 本機ip位址 127.0.0.1

databasename:資料庫的名字

cmd -> ipconfig:ip位址查詢

uri:統一資源識別符號

urn:用特定命名空間的名字標識資源

匯入ojdbc6.jar

**塊:

public

class

jdbctest

}catch

(exception e)

finally

catch

(sqlexception e)}}

}

Jdbc 鏈結資料庫

try rs.close ps.close conn.close try catch exception e if rs null if ps null if conn null catch sqlexception e console cpbm 09110444 資源已經釋放!ps is not ...

JDBC鏈結資料庫

1 oracle8 8i 9i資料庫 thin模式 class.forname oracle.jdbc.driver.oracledriver newinstance string url jdbc oracle thin localhost 1521 orcl orcl為資料庫的sid strin...

jdbc鏈結資料庫

1.鏈結資料庫 1.註冊驅動 2.獲取鏈結物件 3.獲取語句執行物件 4.處理結果集 5.釋放資源 public static void main string args throws classnotfoundexception,sqlexception 2.專案通用格式 1.view層,處理頁面...