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

com.frameworkset.orm.transaction.InnerConnection Maven / Gradle / Ivy

Go to download

bboss is a j2ee framework include aop/ioc,mvc,persistent,taglib,rpc,event ,bean-xml serializable and so on.http://www.bbossgroups.com

The newest version!
/*
 *  Copyright 2008 biaoping.yin
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.  
 */
package com.frameworkset.orm.transaction;

import java.sql.Array;
import java.sql.Blob;
import java.sql.CallableStatement;
import java.sql.Clob;
import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.NClob;
import java.sql.PreparedStatement;
import java.sql.SQLClientInfoException;
import java.sql.SQLException;
import java.sql.SQLWarning;
import java.sql.SQLXML;
import java.sql.Savepoint;
import java.sql.Statement;
import java.sql.Struct;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.concurrent.Executor;

/**
 * 
 * 
 * 

Title: InnerConnection.java

* *

Description:

* *

* bboss workgroup *

*

* Copyright (c) 2007 *

* * @Date 2009-6-1 下午08:58:51 * @author biaoping.yin * @version 1.0 */ class InnerConnection implements java.sql.Connection { private Connection con; private List statements = new java.util.ArrayList(); InnerConnection(Connection con) { this.con = con; } public void clearWarnings() throws SQLException { this.con.clearWarnings(); } protected void closeStatements() { try { for (int i = 0; i < this.statements.size(); i++) { Statement stmt = (Statement) statements.get(i); try { stmt.close(); } catch (SQLException e) { } } statements.clear(); } catch (Exception e) { statements.clear(); } } public void close() throws SQLException { closeStatements(); if(con != null) this.con.close(); this.con = null; } public void commit() throws SQLException { this.con.commit(); } public Statement createStatement() throws SQLException { Statement stmt = new InnerStatement(con.createStatement()); this.statements.add(stmt); return stmt; } public Statement createStatement(int resultSetType, int resultSetConcurrency) throws SQLException { Statement stmt = new InnerStatement(con.createStatement(resultSetType, resultSetConcurrency)); this.statements.add(stmt); return stmt; } public Statement createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException { Statement stmt = new InnerStatement(this.con.createStatement(resultSetType, resultSetConcurrency, resultSetHoldability)); this.statements.add(stmt); return stmt; } public boolean getAutoCommit() throws SQLException { return this.con.getAutoCommit(); } public String getCatalog() throws SQLException { return this.con.getCatalog(); } public int getHoldability() throws SQLException { return this.con.getHoldability(); } public DatabaseMetaData getMetaData() throws SQLException { return this.con.getMetaData(); } public int getTransactionIsolation() throws SQLException { return this.con.getTransactionIsolation(); } public Map getTypeMap() throws SQLException { return this.con.getTypeMap(); } public SQLWarning getWarnings() throws SQLException { return this.con.getWarnings(); } public boolean isClosed() throws SQLException { return this.con.isClosed(); } public boolean isReadOnly() throws SQLException { return this.con.isReadOnly(); } public String nativeSQL(String sql) throws SQLException { return this.con.nativeSQL(sql); } public CallableStatement prepareCall(String sql) throws SQLException { CallableStatement cstmt = new InnerCallableStatement(this.con.prepareCall(sql)); this.statements.add(cstmt); return cstmt; } public CallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency) throws SQLException { CallableStatement cstmt = new InnerCallableStatement(this.con.prepareCall(sql, resultSetType, resultSetConcurrency)); this.statements.add(cstmt); return cstmt; // return this.con.prepareCall(sql,resultSetType,resultSetConcurrency); } public CallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException { CallableStatement cstmt = new InnerCallableStatement(this.con.prepareCall(sql, resultSetType, resultSetConcurrency, resultSetHoldability)); this.statements.add(cstmt); return cstmt; // return this.con.prepareCall(sql,resultSetType,resultSetConcurrency,resultSetHoldability); } public PreparedStatement prepareStatement(String sql) throws SQLException { PreparedStatement pstmt = new InnerPreparedStatement(this.con.prepareStatement(sql)); this.statements.add(pstmt); return pstmt; // return this.con.prepareStatement(sql); } public PreparedStatement prepareStatement(String sql, int autoGeneratedKeys) throws SQLException { PreparedStatement pstmt = new InnerPreparedStatement(this.con.prepareStatement(sql, autoGeneratedKeys)); this.statements.add(pstmt); return pstmt; // return this.con.prepareStatement(sql, autoGeneratedKeys); } public PreparedStatement prepareStatement(String sql, int[] columnIndexes) throws SQLException { PreparedStatement pstmt = new InnerPreparedStatement(this.con.prepareStatement(sql, columnIndexes)); this.statements.add(pstmt); return pstmt; // return this.con.prepareStatement(sql, columnIndexes); } public PreparedStatement prepareStatement(String sql, String[] columnNames) throws SQLException { PreparedStatement pstmt = new InnerPreparedStatement(this.con.prepareStatement(sql, columnNames)); this.statements.add(pstmt); return pstmt; // return this.con.prepareStatement(sql, columnNames); } public PreparedStatement prepareStatement(String sql, int resultSetType, int resultSetConcurrency) throws SQLException { PreparedStatement pstmt = new InnerPreparedStatement(this.con.prepareStatement(sql, resultSetType, resultSetConcurrency)); this.statements.add(pstmt); return pstmt; // return this.con.prepareStatement(sql, resultSetType, resultSetConcurrency); } public PreparedStatement prepareStatement(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException { PreparedStatement pstmt = new InnerPreparedStatement(this.con.prepareStatement(sql, resultSetType, resultSetConcurrency, resultSetHoldability)); this.statements.add(pstmt); return pstmt; // return this.con.prepareStatement(sql, resultSetType, resultSetConcurrency, resultSetHoldability); } public void releaseSavepoint(Savepoint savepoint) throws SQLException { this.con.releaseSavepoint(savepoint); } public void rollback() throws SQLException { this.con.rollback(); } public void rollback(Savepoint savepoint) throws SQLException { this.con.rollback(savepoint); } public void setAutoCommit(boolean autoCommit) throws SQLException { this.con.setAutoCommit(autoCommit); } public void setCatalog(String catalog) throws SQLException { this.con.setCatalog(catalog); } public void setHoldability(int holdability) throws SQLException { this.con.setHoldability(holdability); } public void setReadOnly(boolean readOnly) throws SQLException { this.con.setReadOnly(readOnly); } public Savepoint setSavepoint() throws SQLException { return this.con.setSavepoint(); } public Savepoint setSavepoint(String name) throws SQLException { return this.con.setSavepoint(name); } public void setTransactionIsolation(int level) throws SQLException { this.con.setTransactionIsolation(level); } // public void setTypeMap(Map map) throws SQLException { // this.con.setTypeMap(map); // // } public Connection getInnerConnection() { return this.con; } public T unwrap(Class iface) throws SQLException { // TODO Auto-generated method stub return this.con.unwrap(iface); } public boolean isWrapperFor(Class iface) throws SQLException { // TODO Auto-generated method stub return this.con.isWrapperFor(iface); } public void setTypeMap(Map> map) throws SQLException { this.con.setTypeMap(map); } public Clob createClob() throws SQLException { // TODO Auto-generated method stub return this.con.createClob(); } public Blob createBlob() throws SQLException { // TODO Auto-generated method stub return this.con.createBlob(); } public NClob createNClob() throws SQLException { // TODO Auto-generated method stub return this.con.createNClob(); } public SQLXML createSQLXML() throws SQLException { // TODO Auto-generated method stub return this.con.createSQLXML(); } public boolean isValid(int timeout) throws SQLException { // TODO Auto-generated method stub return this.con.isValid(timeout); } public void setClientInfo(String name, String value) throws SQLClientInfoException { // TODO Auto-generated method stub this.con.setClientInfo(name, value); } public void setClientInfo(Properties properties) throws SQLClientInfoException { // TODO Auto-generated method stub this.con.setClientInfo(properties); } public String getClientInfo(String name) throws SQLException { // TODO Auto-generated method stub return this.con.getClientInfo(name); } public Properties getClientInfo() throws SQLException { // TODO Auto-generated method stub return this.con.getClientInfo(); } public Array createArrayOf(String typeName, Object[] elements) throws SQLException { // TODO Auto-generated method stub return this.con.createArrayOf(typeName, elements); } public Struct createStruct(String typeName, Object[] attributes) throws SQLException { // TODO Auto-generated method stub return this.con.createStruct(typeName, attributes); } @Override public void setSchema(String schema) throws SQLException { // TODO Auto-generated method stub this.con.setSchema( schema); } public String getSchema() throws SQLException { // TODO Auto-generated method stub return this.con.getSchema(); } public void abort(Executor executor) throws SQLException { // TODO Auto-generated method stub this.con.abort( executor); } public void setNetworkTimeout(Executor executor, int milliseconds) throws SQLException { // TODO Auto-generated method stub this.con.setNetworkTimeout( executor, milliseconds); } public int getNetworkTimeout() throws SQLException { // TODO Auto-generated method stub return this.con. getNetworkTimeout(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy