JDBC Driver
- Infomix
- Driver: com.informix.jdbc.IfxDriver
- JDBC URL : jdbc:informix-sqli://<host>:<port>/<database>:informixserver=<dbservername>
- Required File : ifxjdbc.jar(下载)
- JavaDB/Derby
- Driver Class : org.apache.derby.jdbc.ClientDriver
- JDBC URL : jdbc:derby:net://<host>:<port1527>/<databaseName>
- Required File : derbyclient.jar(下载)
- Microsoft SQL Server 2000
- Driver Class : com.microsoft.jdbc.sqlserver.SQLServerDriver
- JDBC URL : jdbc:microsoft:sqlserver://<host>:<port1433>;DatabaseName=<database>
- Required File : msjdbc.jar(下载)
- Microsoft SQL Server 2005
- Driver Class : com.microsoft.sqlserver.jdbc.SQLServerDriver
- JDBC URL : jdbc:sqlserver://<host>[:<port1433>];databaseName=<database>
- Required File : sqljdbc.jar(下载)
- MySQL (Connector/J)
- Driver Class : com.mysql.jdbc.Driver
- JDBC URL : jdbc:mysql://<host>:<port3306>/<database>
- Required File : mysql-connector-java-nn-bin.jar(下载)
- Oracle (Thin JDBC Driver)
- Driver Class : oracle.jdbc.driver.OracleDriver
- JDBC URL :
- jdbc:oracle:thin:@<host>:<port>:<SID>
- jdbc:oracle:thin:@<host>:<port>/<service>
- jdbc:oracle:thin:@<TNSName>
- Required File : ojdbcxx.jar(下载)
- Oracle (OCI JDBC Driver)
- Driver Class : oracle.jdbc.driver.OracleDriver
- JDBC URL :
- jdbc:oracle:thin:@<host>:<port>:<SID>
- jdbc:oracle:thin:@<host>:<port>/<service>
- jdbc:oracle:thin:<TNSName>
- Required File : ojdbcxx.jar(下载)
- PostgreSQL
- Driver Class : org.postgresql.Driver
- JDBC URL : jdbc:postgresql://<host>:<port5432>/<database>
- Required File : postgresql-nn.jdbc3.jar(下载)
JDBC Driver的更多相关文章
- Class.forName("com.mysql.jdbc.Driver") ;
try { Class.forName("com.mysql.jdbc.Driver") ; } catch(ClassNotFoundException e) { System. ...
- JDBC Driver Types
JDBC Driver Types Type1: JDBC-ODBC Bridge Driver Type2: JDBC-Native API Type3: JDBC-Net Pure Java Ty ...
- [bigdata] 启动CM出现 “JDBC Driver class not found: com.mysql.jdbc.Driver” 以及“Error creating bean with name 'serverLogFetcherImpl'”问题的解决方法
问题:“JDBC Driver class not found: com.mysql.jdbc.Driver” 通过以下命令启动cm [root@hadoop1 ~]# /etc/init.d/cl ...
- java中myeclipse连接mysql问题(java.lang.ClassNotFoundException: com.mysql.jdbc.Driver)
java中myeclipse连接mysql问题(java.lang.ClassNotFoundException: com.mysql.jdbc.Driver) 1.往项目中添加mysql-conne ...
- JDBC driver connection string大全
Database / data source URL format / driver name Value Default port MySQL URL format: jdbc:mysql: ...
- java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver 错误的解决办法
java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver 错误的解决办法 (2011-05-05 16:08:05) 转载▼ ...
- unkow jdbc driver : http://maven.apache.org
报了这么一个错,找了很久才找到问题出在哪里,具体为什么会什么出现现在还不怎么懂,只是现在能让它继续跑起来 这个错是因为我的spring-mybatis.xml文件读取不了jdbc.properties ...
- 【转】关于Class.forName(“com.mysql.jdbc.Driver”)
原文:http://www.cnblogs.com/gaojing/archive/2012/03/23/2413638.html 传统的使用jdbc来访问数据库的流程为: Class.forName ...
- ORACLE11g JDBC Driver
http://blog.163.com/z_rx/blog/static/276363762011312947507/ ORACLE服务器端安装程序找到相应目录"x$\app\Adminis ...
- JNDI数据源局部配置(解决Cannot create JDBC driver of class '' for connect URL 'null')
最开始,我是借鉴 孤傲苍狼的JNDI教程去做的,他讲得很详细,但是坏处也就是因为他讲的太详细.查了很多书,都是建议说不要用全局去配置JNDI,一是要修改tomcat的server.xml,容易破坏to ...
随机推荐
- 八、CCMenu和CCMenuItem
游戏中经常会提供一些菜单项让用户开始游戏.暂停\继续游戏.打开\关闭音乐或者是返回到上一个界面,比如下面两张图中用红色线框标记的菜单项 我们可以使用CCMenu和CCMenuItem实现上述的 ...
- Java 中的数组操作
前言 在Java中,有很多封装好的类可以用来操纵数组(排序,复制等等),使得数组使用起来非常的方便.这就是高级语言带来的好处. 代码示例 - 一维数组 package test; import jav ...
- java script 闭包
闭包的概念真的是很绕,我就来点实际的代码. 当我用下面的代码的时候 发生了闭包,当执行onclick事件的时候,变量一直引用了外部函数的变量,结果i总是4 function newLoad() { / ...
- UI学习笔记---第十二天UITabBarController
页签视图控制器-UITabBarController 自定义UITabBar block高级 一.UITabBarController 结构为三层:Tab bar controller v ...
- 1130-host ... is not allowed to connect to this MySql server 开放mysql远程连接 不使用localhost
报错:1130-host ... is not allowed to connect to this MySql server 解决方法: 1. 改表法. 可能是你的帐号不允许从远程登陆,只能在loc ...
- linux缓冲的概念fopen /open,read/write和fread/fwrite区别
fopen /open区别 UNIX环境下的C 对二进制流文件的读写有两套班子:1) fopen,fread,fwrite ; 2) open, read, write这里简单的介绍一下他们的区别.1 ...
- UVa 442 矩阵链乘(栈)
Input Specification Input consists of two parts: a list of matrices and a list of expressions. The f ...
- POJ 1488 Tex Quotes --- 水题
POJ 1488 题目大意:给定一篇文章,将它的左引号转成 ``(1的左边),右引号转成 ''(两个 ' ) 解题思路:水题,设置一个bool变量标记是左引号还是右引号即可 /* POJ 1488 T ...
- 【BZOJ1008】【HNOI2008】越狱
以前水过的水题 原题: 监狱有连续编号为1...N的N个房间,每个房间关押一个犯人,有M种宗教,每个犯人可能信仰其中一种.如果相邻房间的犯人的宗教相同,就可能发生越狱,求有多少种状态可能发生越狱 1& ...
- 【P1303】苹果二叉树
树归入门题 原题: 有一棵苹果树,如果树枝有分叉,一定是分2叉(就是说没有只有1个儿子的结点).这棵树共有N个结点(叶子点或者树枝分叉点),编号为1-N,树根编号一定是1.我们用一根树枝两端连接的结点 ...