|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.ibm.as400.access.AS400JDBCDataSource
com.ibm.as400.access.AS400JDBCConnectionPoolDataSource
public class AS400JDBCConnectionPoolDataSource extends AS400JDBCDataSource implements ConnectionPoolDataSource, Referenceable, Serializable
The AS400JDBCConnectionPoolDataSource class represents a factory for AS400PooledConnection objects.
The following is an example that creates an AS400JDBCConnectionPoolDataSource object that can be used to cache JDBC connections.
// Create a data source for making the connection. AS400JDBCConnectionPoolDataSource dataSource = new AS400JDBCConnectionPoolDataSource("myAS400"); datasource.setUser("myUser"); datasource.setPassword("MYPWD"); // Get the PooledConnection. PooledConnection pooledConnection = datasource.getPooledConnection();
| Modifier and Type | Field and Description |
|---|
| Constructor and Description |
|---|
AS400JDBCConnectionPoolDataSource()
Constructs a default AS400JDBCConnectionPoolDataSource object. |
AS400JDBCConnectionPoolDataSource(String serverName)
Constructs an AS400JDBCConnectionPoolDataSource with the specified serverName. |
AS400JDBCConnectionPoolDataSource(String serverName,
String user,
String password)
Constructs an AS400JDBCConnectionPoolDataSource with the specified signon information. |
AS400JDBCConnectionPoolDataSource(String serverName,
String user,
String password,
String keyRingName,
String keyRingPassword)
Constructs an AS400JDBCConnectionPoolDataSource with the specified signon information to use for SSL communications with the system. |
| Modifier and Type | Method and Description |
|---|---|
PooledConnection |
getPooledConnection()
Returns a pooled connection that is connected to the IBM i system. |
PooledConnection |
getPooledConnection(String user,
String password)
Returns a pooled connection that is connected to the IBM i system. |
Reference |
getReference()
Returns the Reference object for the data source object. |
| Methods inherited from class java.lang.Object |
|---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface javax.sql.CommonDataSource |
|---|
getLoginTimeout, getLogWriter, setLoginTimeout, setLogWriter |
| Methods inherited from interface java.sql.Wrapper |
|---|
isWrapperFor, unwrap |
| Constructor Detail |
|---|
public AS400JDBCConnectionPoolDataSource()
public AS400JDBCConnectionPoolDataSource(String serverName)
serverName - The IBM i system name.
public AS400JDBCConnectionPoolDataSource(String serverName,
String user,
String password)
serverName - The IBM i system name.user - The user id.password - The password.
public AS400JDBCConnectionPoolDataSource(String serverName,
String user,
String password,
String keyRingName,
String keyRingPassword)
serverName - The IBM i system name.user - The user id.password - The password.keyRingName - The key ring class name to be used for SSL communications with the system.keyRingPassword - The password for the key ring class to be used for SSL communications with the system.| Method Detail |
|---|
public PooledConnection getPooledConnection()
throws SQLException
getPooledConnection in interface ConnectionPoolDataSourceSQLException - If a database error occurs.
public PooledConnection getPooledConnection(String user,
String password)
throws SQLException
getPooledConnection in interface ConnectionPoolDataSourceuser - The userid for the connection.password - The password for the connection.SQLException - If a database error occurs.
public Reference getReference()
throws NamingException
getReference in interface ReferenceablegetReference in class AS400JDBCDataSourceNamingException - If a naming error occurs resolving the object.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||