搜尋此網誌

2009年7月29日 星期三

J2SE-JDBC 資料庫連接篇

若是用MySQL來當作資料的話 請先下MySQL JDBC driver
之後將*.jar加入至CLASSPATH,Eclipse 在Library 加入external JAR

String driver = "com.mysql.jdbc.Driver";
//
jdbc:mysql://主機名稱:連接埠/資料庫名稱
String url = "jdbc:mysql://localhost/my_db";
//登入資料庫的帳號
String user = "xxx";
//登入資料庫的密碼
String password = "xxx";
Connection conn = null;
Class.forName(driver);
//連接資料庫
conn = DriverManager.getConnection(url, user, password);



沒有留言:

張貼留言