download:??2021前端校招直通車,實(shí)現(xiàn)Offer零距離MK??

java數(shù)據(jù)庫銜接(JDBC)由一組用 Java 編程言語編寫的類和接口組成。JDBC 為工具/數(shù)據(jù)庫開發(fā)人員提供了一個(gè)規(guī)范的 API,使他們可以用純Java API 來編寫數(shù)據(jù)庫應(yīng)用程序。但是各個(gè)開發(fā)商的接口并不完整相同,所以開發(fā)環(huán)境的變化會帶來一定的配置變化。本文主要匯合了不同數(shù)據(jù)庫的銜接方式。

一、銜接各種數(shù)據(jù)庫方式速查表

下面羅列了各種數(shù)據(jù)庫運(yùn)用JDBC銜接的方式,能夠作為一個(gè)手冊運(yùn)用。

1、Oracle10g/11g數(shù)據(jù)庫(thin形式)

?? Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
?? String url="jdbc:oracle:thin:@localhost:1521:orcl";?//orcl為數(shù)據(jù)庫的SID
?? String user="test";
?? String password="test";
?? Connection conn= DriverManager.getConnection(url,user,password);
2、Mysql數(shù)據(jù)庫
??? String driver=com.mysql.jdbc.Driver
??? String?url=jdbc:mysql://127.0.0.1:3306/test
??? String?user=root
??? String?password=root
????Class.forName("driver")
??? Connection conn= DriverManager.getConnection(url,user,password);

3、DB2數(shù)據(jù)庫

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

4、Sql Server7.0/2000數(shù)據(jù)庫

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

5、Sybase數(shù)據(jù)庫


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

復(fù)制代碼


6、Informix數(shù)據(jù)庫


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

復(fù)制代碼


7、MySQL數(shù)據(jù)庫

???String url = "jdbc:mysql://localhost:3306/myDB";//myDB為數(shù)據(jù)庫名

?? String user = "root";

?? String pwd= "578025471";

?? Class.forName("com.mysql.jdbc.Driver");
??? Connection conn = DriverManager.getConnection(url, user, pwd);

8、PostgreSQL數(shù)據(jù)庫


  1. Class.forName("org.postgresql.Driver").newInstance();
  2. String url ="jdbc:postgresql://localhost/myDB" //myDB為數(shù)據(jù)庫名
  3. String user="myuser";
  4. String password="mypassword";
  5. Connection conn= DriverManager.getConnection(url,user,password);
  6. 8、access數(shù)據(jù)庫直連用ODBC的
  7. Class.forName("sun.jdbc.odbc.JdbcOdbcDriver") ;
  8. String url="jdbc:odbc:Driver={MicroSoft Access Driver (*.mdb)};DBQ="+application.getRealPath("/Data/ReportDemo.mdb");
  9. Connection conn = DriverManager.getConnection(url,"","");
  10. Statement stmtNew=conn.createStatement() ;

復(fù)制代碼


二、JDBC銜接MySql方式

下面是運(yùn)用JDBC銜接MySql的一個(gè)小的教程

1、查找驅(qū)動(dòng)程序

MySQL目前提供的java驅(qū)動(dòng)程序?yàn)镃onnection/J,能夠從MySQL官方網(wǎng)站下載,并找到mysql-connector-java-3.0.15-ga-bin.jar文件,此驅(qū)動(dòng)程序?yàn)榧僯ava驅(qū)動(dòng)程序,不需做其他配置。

2、動(dòng)態(tài)指定classpath

假如需求執(zhí)行時(shí)動(dòng)態(tài)指定classpath,就在執(zhí)行時(shí)采用-cp方式。否則將上面的.jar文件參加到classpath環(huán)境變量中。

3、加載驅(qū)動(dòng)程序


  1. try{
  2. Class.forName(com.mysql.jdbc.Driver);
  3. System.out.println(Success loading Mysql Driver!);
  4. }catch(Exception e)
  5. System.out.println(Error loading Mysql Driver!);
  6. e.printStackTrace();