|
Préférences
Moteurs de recherche
|
||||||||
| JavaTM 2 Platform Std. Ed. v1.6.0
javax.sql
|
|||||||||
| Method Summary | |
|---|---|
PooledConnection |
getPooledConnection()
Attempts to establish a physical database connection that can be used as a pooled connection. |
PooledConnection |
getPooledConnection(String user,
String password)
Attempts to establish a physical database connection that can be used as a pooled connection. |
| Methods inherited from interface javax.sql.CommonDataSource |
|---|
getLoginTimeout, getLogWriter, setLoginTimeout, setLogWriter |
| Method Detail |
|---|
PooledConnection getPooledConnection() throws SQLException
PooledConnection object that is a physical
connection to the database that this
ConnectionPoolDataSource object represents
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support
this methodPooledConnection getPooledConnection(String user, String password) throws SQLException
user - the database user on whose behalf the connection is being madepassword - the user's password
PooledConnection object that is a physical
connection to the database that this
ConnectionPoolDataSource object represents
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support
this method