string user="root";string password="123";
string url="jdbc:mysql://localhost:3306/day14";
//1.載入驅動
class.forname("com.mysql.jdbc.driver");
/*不推薦使用這種方法:
1,會載入驅動兩次(載入類一次,new 的時候又是一次)如果採用此種方式,會導致驅動程式註冊兩次,也就是在記憶體中會有兩個driver物件
2,二、程式依賴mysql的api,脫離mysql的jar包,程式將無法編譯,將來程式切換底層資料庫將會非常麻煩。
*/drivermanager.registerdriver(
newcom.mysql.jdbc.driver());
//獲得連線
connection connection=drivermanager.getconnection(url, user, password);
//得到向資料庫傳送sql請求的stagement物件
statement statement=connection.createstatement();
//4.向資料庫傳送sql,獲取資料庫返回的結果集
resultset rs=statement.executequery("select * from 資料庫名稱");
while
(result.next())
//釋放資源
result.close();
statement.close();
connection.close();
//釋放連線,連線是有限的,一定要釋放
JDBC連線資料庫步驟
宣告資料庫驅動,資料來源的url,用於登入資料庫的賬戶和密碼 將其他功能封裝成方法的時候方便使用 string driver 資料庫驅動名稱 string url 資料庫連線位址 string user 用來連線資料庫的使用者名稱 string pwd 用來連線資料庫的密碼 載入資料庫驅動 clas...
JDBC連線資料庫的步驟
1 載入驅動 class.forname oracle.jdbc.driver.oracledriver 2建立資料庫連線 connection conn drivermanager.getconnection string url,string user,string password strin...
使用JDBC連線資料庫的步驟
第一步,載入驅動 class.forname oracle.jdbc.driver.oracledriver 第二步,獲取連線的物件 stringurl jdbc oracle thin localhost 1521 orcl stringuser bbs stringpwd 123 connect...