JDBC連線資料庫的步驟

2021-08-19 11:22:50 字數 891 閱讀 5105

1 載入驅動

class.forname("oracle.jdbc.driver.oracledriver")

2建立資料庫連線

connection conn =drivermanager.getconnection(string url,string user,string password)

string url="jdbc:oracle:thin@localhost:1521:orcl";

string user="scott";

string password="tiger";

3 建立statement並傳送命令(由連線物件建立)

//定義sql語句

string sql="select empno,ename,hiredate from emp";

//建立sql發射器

statement stmt=conn.createstatement();

//傳送並執行sql語句,得到結果集

resultset rs= stmt.exectuquery(sql);

4 處理resultset結果

while(rs.next()){

//取出改行的每一列資料,依據資料型別取值

int empno=rs.getint(1)//資料庫列索引從1開始

string ename=rs.getstring('ename');

date hiredate=rs.getdate(3);

system.out.println(empno+"\t"+ename+"\t"+hiredate.tolocalestring());

5 關閉資料庫資源

rs.close();

stmt.close();

conn.close();

JDBC連線資料庫步驟

宣告資料庫驅動,資料來源的url,用於登入資料庫的賬戶和密碼 將其他功能封裝成方法的時候方便使用 string driver 資料庫驅動名稱 string url 資料庫連線位址 string user 用來連線資料庫的使用者名稱 string pwd 用來連線資料庫的密碼 載入資料庫驅動 clas...

JDBC連線資料庫的步驟

string user root string password 123 string url jdbc mysql localhost 3306 day14 1.載入驅動 class.forname com.mysql.jdbc.driver 不推薦使用這種方法 1,會載入驅動兩次 載入類一次,n...

使用JDBC連線資料庫的步驟

第一步,載入驅動 class.forname oracle.jdbc.driver.oracledriver 第二步,獲取連線的物件 stringurl jdbc oracle thin localhost 1521 orcl stringuser bbs stringpwd 123 connect...