Package org.apache.manifoldcf.core.jdbcpool

Examples of org.apache.manifoldcf.core.jdbcpool.WrappedConnection


   */
  @Override
  public String check()
    throws ManifoldCFException {
    try {
      WrappedConnection tempConnection = JDBCConnectionFactory.getConnection(jdbcProvider, host, databaseName, userName, password);
      JDBCConnectionFactory.releaseConnection(tempConnection);
      return super.check();
    } catch (Throwable e) {
      if (Logging.connectors.isDebugEnabled()) {
        Logging.connectors.debug("Service interruption in check(): " + e.getMessage(), e);
View Full Code Here


   */
  @Override
  public String check()
    throws ManifoldCFException {
    try {
      WrappedConnection tempConnection = JDBCConnectionFactory.getConnection(jdbcProvider, host, databaseName, userName, password);
      JDBCConnectionFactory.releaseConnection(tempConnection);
      return super.check();
    } catch (Throwable e) {
      if (Logging.connectors.isDebugEnabled()) {
        Logging.connectors.debug("Service interruption in check(): " + e.getMessage(), e);
View Full Code Here

TOP

Related Classes of org.apache.manifoldcf.core.jdbcpool.WrappedConnection

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.