📄 filtercallablestatement.java
字号:
/* * Distributed as part of c3p0 v.0.9.1-pre6 * * Copyright (C) 2005 Machinery For Change, Inc. * * Author: Steve Waldman <swaldman@mchange.com> * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 2.1, as * published by the Free Software Foundation. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this software; see the file LICENSE. If not, write to the * Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307, USA. */package com.mchange.v2.sql.filter;import java.io.InputStream;import java.io.Reader;import java.lang.Object;import java.lang.String;import java.math.BigDecimal;import java.net.URL;import java.sql.Array;import java.sql.Blob;import java.sql.CallableStatement;import java.sql.Clob;import java.sql.Connection;import java.sql.Date;import java.sql.ParameterMetaData;import java.sql.Ref;import java.sql.ResultSet;import java.sql.ResultSetMetaData;import java.sql.SQLException;import java.sql.SQLWarning;import java.sql.Time;import java.sql.Timestamp;import java.util.Calendar;import java.util.Map;public abstract class FilterCallableStatement implements CallableStatement{ protected CallableStatement inner; public FilterCallableStatement(CallableStatement inner) { this.inner = inner; } public FilterCallableStatement() {} public void setInner( CallableStatement inner ) { this.inner = inner; } public CallableStatement getInner() { return inner; } public boolean wasNull() throws SQLException { return inner.wasNull(); } public BigDecimal getBigDecimal(int a, int b) throws SQLException { return inner.getBigDecimal(a, b); } public BigDecimal getBigDecimal(int a) throws SQLException { return inner.getBigDecimal(a); } public BigDecimal getBigDecimal(String a) throws SQLException { return inner.getBigDecimal(a); } public Timestamp getTimestamp(String a) throws SQLException { return inner.getTimestamp(a); } public Timestamp getTimestamp(String a, Calendar b) throws SQLException { return inner.getTimestamp(a, b); } public Timestamp getTimestamp(int a, Calendar b) throws SQLException { return inner.getTimestamp(a, b); } public Timestamp getTimestamp(int a) throws SQLException { return inner.getTimestamp(a); } public Blob getBlob(String a) throws SQLException { return inner.getBlob(a); } public Blob getBlob(int a) throws SQLException { return inner.getBlob(a); } public Clob getClob(String a) throws SQLException { return inner.getClob(a); } public Clob getClob(int a) throws SQLException { return inner.getClob(a); } public void setNull(String a, int b, String c) throws SQLException { inner.setNull(a, b, c); } public void setNull(String a, int b) throws SQLException { inner.setNull(a, b); } public void setBigDecimal(String a, BigDecimal b) throws SQLException { inner.setBigDecimal(a, b); } public void setBytes(String a, byte[] b) throws SQLException { inner.setBytes(a, b); } public void setTimestamp(String a, Timestamp b, Calendar c) throws SQLException { inner.setTimestamp(a, b, c); } public void setTimestamp(String a, Timestamp b) throws SQLException { inner.setTimestamp(a, b); } public void setAsciiStream(String a, InputStream b, int c) throws SQLException { inner.setAsciiStream(a, b, c); } public void setBinaryStream(String a, InputStream b, int c) throws SQLException { inner.setBinaryStream(a, b, c); } public void setObject(String a, Object b) throws SQLException { inner.setObject(a, b); } public void setObject(String a, Object b, int c, int d) throws SQLException { inner.setObject(a, b, c, d); } public void setObject(String a, Object b, int c) throws SQLException { inner.setObject(a, b, c); } public void setCharacterStream(String a, Reader b, int c) throws SQLException { inner.setCharacterStream(a, b, c); } public void registerOutParameter(String a, int b) throws SQLException { inner.registerOutParameter(a, b); } public void registerOutParameter(int a, int b) throws SQLException { inner.registerOutParameter(a, b); } public void registerOutParameter(int a, int b, int c) throws SQLException { inner.registerOutParameter(a, b, c); } public void registerOutParameter(int a, int b, String c) throws SQLException { inner.registerOutParameter(a, b, c); } public void registerOutParameter(String a, int b, int c) throws SQLException { inner.registerOutParameter(a, b, c); } public void registerOutParameter(String a, int b, String c) throws SQLException { inner.registerOutParameter(a, b, c); } public Object getObject(String a, Map b) throws SQLException { return inner.getObject(a, b); } public Object getObject(int a, Map b) throws SQLException { return inner.getObject(a, b); } public Object getObject(int a) throws SQLException { return inner.getObject(a); } public Object getObject(String a) throws SQLException { return inner.getObject(a); } public boolean getBoolean(int a) throws SQLException { return inner.getBoolean(a); } public boolean getBoolean(String a) throws SQLException { return inner.getBoolean(a); } public byte getByte(String a) throws SQLException { return inner.getByte(a); } public byte getByte(int a) throws SQLException { return inner.getByte(a); } public short getShort(int a) throws SQLException { return inner.getShort(a); } public short getShort(String a) throws SQLException { return inner.getShort(a); } public int getInt(String a) throws SQLException { return inner.getInt(a); } public int getInt(int a) throws SQLException { return inner.getInt(a); } public long getLong(int a) throws SQLException { return inner.getLong(a); } public long getLong(String a) throws SQLException { return inner.getLong(a); } public float getFloat(String a) throws SQLException { return inner.getFloat(a); } public float getFloat(int a) throws SQLException { return inner.getFloat(a); } public double getDouble(String a) throws SQLException { return inner.getDouble(a); } public double getDouble(int a) throws SQLException { return inner.getDouble(a); } public byte[] getBytes(int a) throws SQLException { return inner.getBytes(a); } public byte[] getBytes(String a) throws SQLException { return inner.getBytes(a); } public URL getURL(String a) throws SQLException { return inner.getURL(a); } public URL getURL(int a) throws SQLException { return inner.getURL(a); } public void setBoolean(String a, boolean b) throws SQLException { inner.setBoolean(a, b); } public void setByte(String a, byte b) throws SQLException { inner.setByte(a, b); } public void setShort(String a, short b) throws SQLException { inner.setShort(a, b); } public void setInt(String a, int b) throws SQLException { inner.setInt(a, b); } public void setLong(String a, long b) throws SQLException { inner.setLong(a, b); } public void setFloat(String a, float b) throws SQLException { inner.setFloat(a, b); } public void setDouble(String a, double b) throws SQLException { inner.setDouble(a, b); } public String getString(String a) throws SQLException { return inner.getString(a); } public String getString(int a) throws SQLException { return inner.getString(a); } public Ref getRef(int a) throws SQLException { return inner.getRef(a); } public Ref getRef(String a) throws SQLException { return inner.getRef(a); } public void setURL(String a, URL b) throws SQLException { inner.setURL(a, b); } public void setTime(String a, Time b) throws SQLException { inner.setTime(a, b); } public void setTime(String a, Time b, Calendar c) throws SQLException { inner.setTime(a, b, c); }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -