Jdbc連接常見數(shù)據(jù)庫(kù)的示例分析,針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡(jiǎn)單易行的方法。
站在用戶的角度思考問題,與客戶深入溝通,找到固鎮(zhèn)網(wǎng)站設(shè)計(jì)與固鎮(zhèn)網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類型包括:網(wǎng)站制作、網(wǎng)站設(shè)計(jì)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名申請(qǐng)、網(wǎng)站空間、企業(yè)郵箱。業(yè)務(wù)覆蓋固鎮(zhèn)地區(qū)。1.Jdbc連接Access數(shù)據(jù)庫(kù)
①通過控制面板>>管理工具>>數(shù)據(jù)源 選擇系統(tǒng)DNS選項(xiàng)卡,添加Microsoft Access Driver (*.mdb),以數(shù)據(jù)源名稱sample為例,選擇數(shù)據(jù)庫(kù)文件。在程序的鏈接代碼如下:
public static Connection getConnection() {
try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection conn = DriverManager.getConnection("jdbc:odbc:sample", "", ""); //此種連接方式需要建立一個(gè)名為sample的數(shù)據(jù)源
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
return conn;
}
②直接在程序中建立連接,代碼如下:
public static Connection getConnection() {
try {
String url = "jdbc:odbc:driver={Microsoft Access Driver (*.mdb)};DBQ=D://Documents and Settings//Administrator//workspace//sample.mdb";
//url中要給出數(shù)據(jù)庫(kù)的絕對(duì)路徑
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
conn = DriverManager.getConnection(url, "", "");
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
return conn;
}
2.Jdbc連接MySQL數(shù)據(jù)庫(kù)(需要引入mysql的驅(qū)動(dòng)程序 )
public static Connection getConnection() {
try {
Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection(
"jdbc:mysql://localhost:3306/bookstore?user=root&password=&characterEncoding=utf-8");//bookstore是你的數(shù)據(jù)庫(kù)名稱
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
return conn;
}
3.Jdbc連接Oracle數(shù)據(jù)庫(kù)(需要引入Oracle的驅(qū)動(dòng)程序classes12)
public static Connection getConnection() {
try {
Class.forName("oracle.jdbc.driver.OracleDriver");
conn = DriverManager.getConnection(
"jdbc:oracle:thin:@localhost:1521:oracle9i", "scott","tiger");//oracle9i是數(shù)據(jù)庫(kù)名
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
return conn;
}
關(guān)于Jdbc連接常見數(shù)據(jù)庫(kù)的示例分析問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。