All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.smyld.db.oracle.SMYLDOraConCashImpl Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version
package org.smyld.db.oracle;

import java.sql.SQLException;

import javax.sql.ConnectionPoolDataSource;

import oracle.jdbc.pool.OracleConnectionCacheImpl;
import oracle.jdbc.pool.OracleConnectionPoolDataSource;

public class SMYLDOraConCashImpl extends OracleConnectionCacheImpl {
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	public SMYLDOraConCashImpl() throws SQLException {
	}

	public SMYLDOraConCashImpl(ConnectionPoolDataSource connPoolDS)
			throws SQLException {
		super(connPoolDS);

	}

	public void closePooledConnection(OracleConnectionPoolDataSource connection)
			throws SQLException {
		super.closePooledConnection(connection.getPooledConnection());
		// System.out.println("Close pooled connection is called ..... ");
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy