当前位置: 技术问答>java相关
DriverManager的方法getConnection()
来源: 互联网 发布时间:2015-08-28
本文导语: getConnection public static Connection getConnection(String url, Properties info) throws SQLExceptionAttempts to establish a connecti...
getConnection
public static Connection getConnection(String url,
Properties info)
throws SQLExceptionAttempts to establish a connection to the given database URL. The DriverManager attempts to select an appropriate driver from the set of registered JDBC drivers.
注册的Driver指的什么,在什么地方进行注册,如何注册呢?
DriverManager具体是在哪里找呢?
public static Connection getConnection(String url,
Properties info)
throws SQLExceptionAttempts to establish a connection to the given database URL. The DriverManager attempts to select an appropriate driver from the set of registered JDBC drivers.
注册的Driver指的什么,在什么地方进行注册,如何注册呢?
DriverManager具体是在哪里找呢?
|
去http://java.sun.com/products/jdbc/jdbc.drivers.html找一个你需要的驱动,不同的数据库使用的驱动不同,一般最好找第4类驱动,性能好,然后将下载的jar包(下载二进制包,别下载源代码包),拷贝到jdk的classpath目录,就行了,一般下载页面也会有该驱动的使用说明,可以看一下
|
用jdbc:odbc:sun.jdbc.odbc
|
不同的数据库jdbc驱动不同,Ms的可以到MS的网站上下,Orace 9i在它的安装完的程序里就有.
|
直接new一个你用的jdbc驱动程序的类,或者用class.forName():
new oracle.jdbc.driver.OracleDriver;
或者:
Class.forName("oracle.jdbc.driver.OracleDriver");
new oracle.jdbc.driver.OracleDriver;
或者:
Class.forName("oracle.jdbc.driver.OracleDriver");