各種資料庫的jdbc驅動下載及連線方式
資料庫名稱 | 下載地址 | 說明 |
Mysql | http://www.mysql.com/products/connector/j/ | Shipped. But need to download the latest for MySQL 4.1 or higher. |
Oracle |
http://sourceforge.net/project/showfiles.php?group_id=33291 software/tech/java/sqlj_jdbc/index.html |
Included. |
SQL Server by jTDS | http://sourceforge.net/project/showfiles.php?group_id=33291 | Included. Support Microsoft SQL Server (6.5, 7, 2000 and 2005) |
Postgres | http://jdbc.postgresql.org/download.html | Included 7.3 JDBC 3 |
SAP DB | http://www.sapdb.org/sap_db_jdbc.htm | Included. |
SyBase by jTDS | http://jtds.sourceforge.net/ | Included. Support Sybase (10, 11, 12) |
各種驅動的連線方法:
1. MySQL(http://www.mysql.com) mysql-connector-java-2.0.14-bin.jar ;
Class.forName( "org.gjt.mm.mysql.Driver" );
cn = DriverManager.getConnection( "jdbc:mysql://MyDbComputerNameOrIP:3306/myDatabaseName", sUsr, sPwd );
2. PostgreSQL(http://www.de.postgresql.org) pgjdbc2.jar ;
Class.forName( "org.postgresql.Driver" );
cn = DriverManager.getConnection( "jdbc:postgresql://MyDbComputerNameOrIP/myDatabaseName", sUsr, sPwd );
3. Oracle(http://www.oracle.com/ip/deploy/database/oracle9i/) classes12.zip ;
Class.forName( "oracle.jdbc.driver.OracleDriver" );
cn = DriverManager.getConnection( "jdbc:oracle:thin:MyDbComputerNameOrIP:1521:ORCL", sUsr, sPwd );
4. Sybase(http://jtds.sourceforge.net) jconn2.jar ;
Class.forName( "com.sybase.jdbc2.jdbc.SybDriver" );
cn = DriverManager.getConnection( "jdbc:sybase:Tds:MyDbComputerNameOrIP:2638", sUsr, sPwd );
//(Default-Username/Password: "dba"/"sql")
5. Microsoft SQLServer(http://jtds.sourceforge.net) ;
Class.forName( "net.sourceforge.jtds.jdbc.Driver" );
cn = DriverManager.getConnection( "jdbc:jtds:sqlserver://MyDbComputerNameOrIP:1433/master", sUsr, sPwd );
6. Microsoft SQLServer(http://www.microsoft.com) ;
Class.forName( "com.microsoft.jdbc.sqlserver.SQLServerDriver" );
cn = DriverManager.getConnection( "jdbc:microsoft:sqlserver://MyDbComputerNameOrIP:1433;databaseName=master", sUsr, sPwd );
7. ODBC
Class.forName( "sun.jdbc.odbc.JdbcOdbcDriver" );
Connection cn = DriverManager.getConnection( "jdbc:dbc:" + sDsn, sUsr, sPwd );
8.DB2 Class.forName("com.ibm.db2.jdbc.net.DB2Driver");
String url="jdbc:db2://192.9.200.108:6789/SAMPLE"
cn = DriverManager.getConnection( url, sUsr, sPwd );
9.access由於access並不是作為一項服務執行,所以url的方法對他不適用。access可以通過odbc,也可以通過伺服器對映路徑的形式 找到.mdb檔案,參見http://rmijdbc.objectweb.org/Access/access.html 一、連線各種資料庫方式速查表
下面羅列了各種資料庫使用JDBC連線的方式,可以作為一個手冊使用。
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() ; |
二、JDBC連線MySql方式
下面是使用JDBC連線MySql的一個小的教程
1、查詢驅動程式
MySQL目前提供的java驅動程式為Connection/J,可以從MySQL官方網站下載,並找到mysql-connector-java-3.0.15-ga-bin.jar檔案,此驅動程式為純java驅動程式,不需做其他配置。
2、動態指定classpath
如果需要執行時動態指定classpath,就在執行時採用-cp方式。否則將上面的.jar檔案加入到classpath環境變數中。
3、載入驅動程式
try{ Class.forName(com.mysql.jdbc.Driver); System.out.println(Success loading Mysql Driver!); }catch(Exception e) { System.out.println(Error loading Mysql Driver!); e.printStackTrace(); } |
4、設定連線的url
jdbc:mysql://localhost/databasename[?pa=va][&pa=va] |
相關文章
- 各種資料庫的JDBC驅動下載及連線字串URL寫法資料庫JDBC字串
- 【轉載】JDBC連線各種資料庫的字串JDBC資料庫字串
- JDBC連線各種資料庫的字串JDBC資料庫字串
- jdbc獲取各種資料庫連線JDBC資料庫
- JDBC連線各種資料庫的方法(經典)JDBC資料庫
- jdbc獲取對各種資料庫的連線JDBC資料庫
- JDBC連線各資料庫大全JDBC資料庫
- MySQL下載安裝配置及JDBC連線資料庫MySqlJDBC資料庫
- 各種資料庫連線資料庫
- 各種連線資料庫的連線字串資料庫字串
- 幾種連線資料庫的OLEDB驅動程式資料庫
- JDBC連線三種資料庫例子JDBC資料庫
- Java各資料庫jdbc連線,和需要的jar包Java資料庫JDBCJAR
- [轉載] 1.1Java使用JDBC原生方式連線MySql資料庫JavaJDBCMySql資料庫
- JDBC連線資料庫JDBC資料庫
- mybatis連線資料庫的幾種方式MyBatis資料庫
- .NET中各種資料庫連線大全資料庫
- JDBC 連線資料庫的類JDBC資料庫
- JDBC連線MySQL資料庫及演示樣例JDBCMySql資料庫
- [ 轉載]常用資料庫JDBC連線寫法資料庫JDBC
- [Sqlite] Java使用jdbc連線Sqlite資料庫進行各種資料操作的詳細過程SQLiteJavaJDBC資料庫
- JAVA中十六種主流資料庫的JDBC連線字串Java資料庫JDBC字串
- java jdbc連線資料庫JavaJDBC資料庫
- Java連線各種資料庫的例項 (轉)Java資料庫
- 不能用jdbc-odbc橋驅動來設定資料庫連線嗎?JDBC資料庫
- JDBC、JDBC框架、資料庫事務、資料庫連線池JDBC框架資料庫
- [資料庫][SQL]圖解各種連線join資料庫SQL圖解
- 各種資料庫連線程式碼(JSP)資料庫線程JS
- .NET中各種資料庫連線大全 (轉)資料庫
- 資料庫表的連線方式及用法(一)資料庫
- 各種資料庫的resin 連線池的寫法資料庫
- dbeaver連線達夢國產資料庫,驅動下載失敗怎麼配置資料庫
- 連線MySQL資料庫的兩種方式介紹MySql資料庫
- 【JavaWeb】JDBC連線MySQL資料庫JavaWebJDBCMySql資料庫
- JDBC之連線sqlserver資料庫JDBCSQLServer資料庫
- JDBC連線資料庫步驟JDBC資料庫
- JDBC連線資料庫經驗JDBC資料庫
- jdbc獲取資料庫連線JDBC資料庫