真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Jdbc連接常見數(shù)據(jù)庫(kù)的示例分析

Jdbc連接常見數(shù)據(jù)庫(kù)的示例分析,針對(duì)這個(gè)問(wèn)題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問(wèn)題的小伙伴找到更簡(jiǎn)單易行的方法。

網(wǎng)站建設(shè)公司,為您提供網(wǎng)站建設(shè),網(wǎng)站制作,網(wǎng)頁(yè)設(shè)計(jì)及定制網(wǎng)站建設(shè)服務(wù),專注于成都企業(yè)網(wǎng)站定制,高端網(wǎng)頁(yè)制作,對(duì)集裝箱等多個(gè)行業(yè)擁有豐富的網(wǎng)站建設(shè)經(jīng)驗(yàn)的網(wǎng)站建設(shè)公司。專業(yè)網(wǎng)站設(shè)計(jì),網(wǎng)站優(yōu)化推廣哪家好,專業(yè)成都網(wǎng)站營(yíng)銷優(yōu)化,H5建站,響應(yīng)式網(wǎng)站。

1.Jdbc連接Access數(shù)據(jù)庫(kù)

①通過(guò)控制面板>>管理工具>>數(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ù)的示例分析問(wèn)題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒(méi)有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。


文章標(biāo)題:Jdbc連接常見數(shù)據(jù)庫(kù)的示例分析
當(dāng)前網(wǎng)址:http://weahome.cn/article/goohoe.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部