各家JDBC driver的现行版本及使用用法

来源:互联网 发布:顽固软件卸载工具 编辑:程序博客网 时间:2024/05/16 01:51
<script type="text/javascript"><!--google_ad_client = "pub-2947489232296736";/* 728x15, 创建于 08-4-23MSDN */google_ad_slot = "3624277373";google_ad_width = 728;google_ad_height = 15;//--></script><script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<script type="text/javascript"><!--google_ad_client = "pub-2947489232296736";/* 160x600, 创建于 08-4-23MSDN */google_ad_slot = "4367022601";google_ad_width = 160;google_ad_height = 600;//--></script><script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>

有鉴于许多版友对于寻找JDBC driver或者如何使用driver常常发问,
在这边我简单整理一下比较代表性的driver跟使用方式.

Microsoft SQL Server series (6.5, 7.x and 2000) and Sybase 10

JDBC Name: jTDS
URL: http://jtds.sourceforge.net/
Version: 0.5.1
Download URL: http://sourceforge.net/project/showfiles.php?group_id=33291

语法:

Class.forName("net.sourceforge.jtds.JDBC.driver ");
Connection con = driverManager.getConnection("JDBC:jtds:sqlserver://host:port/database","user","password");
or
Connection con = driverManager.getConnection("JDBC:jtds:sybase://host:port/database","user","password");



MySQL

JDBC Name: Connector/J 3.0
URL: http://www.mysql.com/
Version: 3.0.8-stable
Download URL: JDBC-stable.html" target=_blank>http://www.mysql.com/downloads/api-JDBC-stable.html

语法:

Class.forName("com.mysql.JDBC.driver");
Connection con = driverManager.getConnection("JDBC:mysql://host:port/database","user","password");



Oracle

JDBC Name: Connector/J 3.0
URL: http://otn.oracle.com/
Version: 3.0.8-stable
Download URL: JDBC/content.html" target=_blank>http://otn.oracle.com/software/tech/java/sqlj_JDBC/content.html

语法:

Class.forName("oracle.JDBC.driver.Oracledriver");
Connection con = driverManager.getConnection("JDBC:oracle:thin:@host:port:databse","user","password");



Sybase

driver: jConnect 4.5/5.5 (JDBC 2.0 请使用5.5)

语法:


Class.forName("com.sybase.JDBC2.JDBC.Sybdriver").newInstance();
driverManager.getConnection("JDBC:sybase:Tds:IP地址:2638?ServiceName="+数据库名称,"账号","密码");



Postgresql

JDBC Name: PostgreSQL JDBC
URL: JDBC.postgresql.org/" target=_blank>http://JDBC.postgresql.org/
Version: 7.3.3 build 110
Download URL: JDBC.postgresql.org/download.html" target=_blank>http://JDBC.postgresql.org/download.html

语法:

Class.forName("org.postgresql.driver");
Connection con=driverManager.getConnection("JDBC:postgresql://host:port/database","user","password");



IBM AS400主机在用的JDBC语法

有装V4R4以上版本的Client Access Express
可以在C:Program FilesIBMClient Accessjt400lib
找到 driver 档案 jt400.zip,并更改扩展名成为 jt400.jar

语法

java.sql.driverManager.registerdriver (new com.ibm.as400.access.AS400JDBCdriver ());
Class.forName("com.ibm.as400.access.AS400JDBCConnection");
con = driverManager.getConnection("JDBC:as400://IP","user","password");

各家JDBC driver现行版本及使用语法各家JDBC driver现行版本及使用语法各家JDBC driver现行版本及使用语法各家JDBC driver现行版本及使用语法各家JDBC driver现行版本及使用语法各家JDBC driver现行版本及使用语法

<script type="text/javascript"><!--google_ad_client = "pub-2947489232296736";/* 728x15, 创建于 08-4-23MSDN */google_ad_slot = "3624277373";google_ad_width = 728;google_ad_height = 15;//--></script><script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<script type="text/javascript"><!--google_ad_client = "pub-2947489232296736";/* 160x600, 创建于 08-4-23MSDN */google_ad_slot = "4367022601";google_ad_width = 160;google_ad_height = 600;//--></script><script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>