標題:
[分享]
JAVA連接MY SQL資料庫
[打印本頁]
作者:
微笑
時間:
2014-3-11 16:49
標題:
JAVA連接MY SQL資料庫
我用的是my sql,這是code
public MySQLAccess(String db, String user, String pw) {
dbName = db;
username = user;
password = pw;
try {
Class.forName("com.mysql.jdbc.Driver");
connect = DriverManager.getConnection("jdbc:mysql://localhost/"
+ dbName, username, password);
} catch (Exception e) {
JOptionPane.showMessageDialog(null, "Fail to connection");
}//try
歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)