java連接各種數據庫方式速查表

          Myeclipse 中的數據庫連接方式已經很全了,以防萬一以后用得著,收集一下。

          【轉自】http://www.new321.com/blog/article.asp?id=176

          1.Oracle8/8i/9i數據庫(thin模式)

          Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
          String url="jdbc:oracle:thin:@localhost:1521:orcl"; //orcl為數據庫的SID
          String user="test";
          String password="test";
          Connection conn= DriverManager.getConnection(url,user,password);

          2.DB2數據庫

          Class.forName("com.ibm.db2.jdbc.app.DB2Driver ").newInstance();
          String url="jdbc:db2://localhost:5000/sample"; //sample為你的數據庫名
          String user="admin";
          String password="";
          Connection conn= DriverManager.getConnection(url,user,password);

          3.Sql Server7.0/2000數據庫

          Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance();
          String url="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=mydb";
          //mydb為數據庫
          String user="sa";
          String password="";
          Connection conn= DriverManager.getConnection(url,user,password);

          4.Sybase數據庫

          Class.forName("com.sybase.jdbc.SybDriver").newInstance();
          String url =" jdbc:sybase:Tds:localhost:5007/myDB";//myDB為你的數據庫名
          Properties sysProps = System.getProperties();
          SysProps.put("user","userid");
          SysProps.put("password","user_password");
          Connection conn= DriverManager.getConnection(url, SysProps);

          5.Informix數據庫

          Class.forName("com.informix.jdbc.IfxDriver").newInstance();
          String url = "jdbc:informix-sqli://123.45.67.89:1533/myDB:INFORMIXSERVER=myserver;
          user=testuser;password=testpassword"; //myDB為數據庫名
          Connection conn= DriverManager.getConnection(url);

          6.MySQL數據庫

          Class.forName("org.gjt.mm.mysql.Driver").newInstance();
          String url ="jdbc:mysql://localhost/myDB?user=soft&password=soft1234&useUnicode=true&characterEncoding=8859_1"
          //myDB為數據庫名
          Connection conn= DriverManager.getConnection(url);

          7.PostgreSQL數據庫

          Class.forName("org.postgresql.Driver").newInstance();
          String url ="jdbc:postgresql://localhost/myDB" //myDB為數據庫名
          String user="myuser";
          String password="mypassword";
          Connection conn= DriverManager.getConnection(url,user,password);

          8.access數據庫直連用ODBC的

          Class.forName("sun.jdbc.odbc.JdbcOdbcDriver") ;
          String url="jdbc:odbc:Driver={MicroSoft Access Driver (*.mdb)};DBQ="+application.getRealPath("/Data/ReportDemo.mdb");
          Connection conn = DriverManager.getConnection(url,"","");
          Statement stmtNew=conn.createStatement() ;

          posted on 2007-08-10 14:33 hijackwust 閱讀(338) 評論(0)  編輯  收藏


          只有注冊用戶登錄后才能發表評論。


          網站導航:
           
          <2007年8月>
          2930311234
          567891011
          12131415161718
          19202122232425
          2627282930311
          2345678

          導航

          統計

          常用鏈接

          留言簿(6)

          隨筆檔案(57)

          友情鏈接

          搜索

          最新評論

          閱讀排行榜

          評論排行榜

          主站蜘蛛池模板: 东宁县| 包头市| 屯留县| 新和县| 修水县| 耿马| 井研县| 咸宁市| 达尔| 临海市| 周口市| 华坪县| 禄丰县| 宜州市| 长宁县| 台江县| 方城县| 金坛市| 石景山区| 大埔区| 义马市| 黑龙江省| 陕西省| 栾川县| 双江| 汨罗市| 鄱阳县| 湟源县| 绥化市| 锦屏县| 元氏县| 内黄县| 策勒县| 盐源县| 玉树县| 磴口县| 东光县| 长乐市| 石狮市| 威远县| 贵州省|