public interface DataSource
implements CommonDataSource, Wrapper
javax.sql.DataSource |
连接DataSource
对象所代表的物理数据源的工厂。 作为DriverManager
工具的替代方案, DataSource
对象是获取连接的首选方法。 实现DataSource
接口的对象通常会使用基于Java TM命名和目录(JNDI)API的命名服务进行注册。
DataSource
接口由驱动程序供应商实施。 有三种类型的实现:
Connection
object Connection
object that will automatically participate in connection pooling. This implementation works with a middle-tier connection pooling manager. Connection
object that may be used for distributed transactions and almost always participates in connection pooling. This implementation works with a middle-tier transaction manager and almost always with a connection pooling manager. 一个DataSource
对象具有可在必要时进行修改的属性。 例如,如果将数据源移动到其他服务器,则可以更改服务器的属性。 好处是,因为可以更改数据源的属性,所以访问该数据源的任何代码都不需要更改。
通过DataSource
对象访问的驱动程序不会向DriverManager
注册。 而是通过查找操作检索DataSource
对象,然后用于创建Connection
对象。 通过基本实现,通过DataSource
对象获得的连接与通过DriverManager
工具获得的连接完全相同。
Public methods |
|
---|---|
abstract Connection |
getConnection() 试图建立与该数据源的连接 |
abstract Connection |
getConnection(String username, String password) 试图建立与该数据源的连接 |
Inherited methods |
|
---|---|
From interface javax.sql.CommonDataSource
|
|
From interface java.sql.Wrapper
|
Connection getConnection ()
Attempts to establish a connection with the data source that this DataSource
object represents.
Returns | |
---|---|
Connection |
a connection to the data source |
Throws | |
---|---|
SQLException |
if a database access error occurs |
Connection getConnection (String username, String password)
试图建立与该数据源的连接 DataSource
对象表示。
Parameters | |
---|---|
username |
String : the database user on whose behalf the connection is being made |
password |
String : the user's password |
Returns | |
---|---|
Connection |
a connection to the data source |
Throws | |
---|---|
SQLException |
if a database access error occurs |