|
Commons DBCP example source code file (TesterCallableStatement.java)
The Commons DBCP TesterCallableStatement.java source code/** * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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 org.apache.commons.dbcp; import java.io.InputStream; import java.io.Reader; 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.Ref; import java.sql.SQLException; import java.sql.Time; import java.sql.Timestamp; import java.util.Calendar; import java.util.Map; /* JDBC_4_ANT_KEY_BEGIN */ import java.sql.NClob; import java.sql.RowId; import java.sql.SQLXML; /* JDBC_4_ANT_KEY_END */ /** * Trivial implementation of a CallableStatement to avoid null pointer exceptions in tests. * * @author Dain Sundstrom * @version $Revision$ */ public class TesterCallableStatement extends TesterPreparedStatement implements CallableStatement { public TesterCallableStatement(Connection conn) { super(conn); } public TesterCallableStatement(Connection conn, String sql) { super(conn, sql); } public TesterCallableStatement(Connection conn, String sql, int resultSetType, int resultSetConcurrency) { super(conn, sql, resultSetType, resultSetConcurrency); } public void registerOutParameter(int parameterIndex, int sqlType) throws SQLException { } public void registerOutParameter(int parameterIndex, int sqlType, int scale) throws SQLException { } public boolean wasNull() throws SQLException { return false; } public String getString(int parameterIndex) throws SQLException { return null; } public boolean getBoolean(int parameterIndex) throws SQLException { return false; } public byte getByte(int parameterIndex) throws SQLException { return 0; } public short getShort(int parameterIndex) throws SQLException { return 0; } public int getInt(int parameterIndex) throws SQLException { return 0; } public long getLong(int parameterIndex) throws SQLException { return 0; } public float getFloat(int parameterIndex) throws SQLException { return 0; } public double getDouble(int parameterIndex) throws SQLException { return 0; } /** * @deprecated */ public BigDecimal getBigDecimal(int parameterIndex, int scale) throws SQLException { return null; } public byte[] getBytes(int parameterIndex) throws SQLException { return new byte[0]; } public Date getDate(int parameterIndex) throws SQLException { return null; } public Time getTime(int parameterIndex) throws SQLException { return null; } public Timestamp getTimestamp(int parameterIndex) throws SQLException { return null; } public Object getObject(int parameterIndex) throws SQLException { return null; } public BigDecimal getBigDecimal(int parameterIndex) throws SQLException { return null; } public Object getObject(int i, Map map) throws SQLException { return null; } public Ref getRef(int i) throws SQLException { return null; } public Blob getBlob(int i) throws SQLException { return null; } public Clob getClob(int i) throws SQLException { return null; } public Array getArray(int i) throws SQLException { return null; } public Date getDate(int parameterIndex, Calendar cal) throws SQLException { return null; } public Time getTime(int parameterIndex, Calendar cal) throws SQLException { return null; } public Timestamp getTimestamp(int parameterIndex, Calendar cal) throws SQLException { return null; } public void registerOutParameter(int paramIndex, int sqlType, String typeName) throws SQLException { } public void registerOutParameter(String parameterName, int sqlType) throws SQLException { } public void registerOutParameter(String parameterName, int sqlType, int scale) throws SQLException { } public void registerOutParameter(String parameterName, int sqlType, String typeName) throws SQLException { } public URL getURL(int parameterIndex) throws SQLException { return null; } public void setURL(String parameterName, URL val) throws SQLException { } public void setNull(String parameterName, int sqlType) throws SQLException { } public void setBoolean(String parameterName, boolean x) throws SQLException { } public void setByte(String parameterName, byte x) throws SQLException { } public void setShort(String parameterName, short x) throws SQLException { } public void setInt(String parameterName, int x) throws SQLException { } public void setLong(String parameterName, long x) throws SQLException { } public void setFloat(String parameterName, float x) throws SQLException { } public void setDouble(String parameterName, double x) throws SQLException { } public void setBigDecimal(String parameterName, BigDecimal x) throws SQLException { } public void setString(String parameterName, String x) throws SQLException { } public void setBytes(String parameterName, byte x[]) throws SQLException { } public void setDate(String parameterName, Date x) throws SQLException { } public void setTime(String parameterName, Time x) throws SQLException { } public void setTimestamp(String parameterName, Timestamp x) throws SQLException { } public void setAsciiStream(String parameterName, InputStream x, int length) throws SQLException { } public void setBinaryStream(String parameterName, InputStream x, int length) throws SQLException { } public void setObject(String parameterName, Object x, int targetSqlType, int scale) throws SQLException { } public void setObject(String parameterName, Object x, int targetSqlType) throws SQLException { } public void setObject(String parameterName, Object x) throws SQLException { } public void setCharacterStream(String parameterName, Reader reader, int length) throws SQLException { } public void setDate(String parameterName, Date x, Calendar cal) throws SQLException { } public void setTime(String parameterName, Time x, Calendar cal) throws SQLException { } public void setTimestamp(String parameterName, Timestamp x, Calendar cal) throws SQLException { } public void setNull(String parameterName, int sqlType, String typeName) throws SQLException { } public String getString(String parameterName) throws SQLException { return null; } public boolean getBoolean(String parameterName) throws SQLException { return false; } public byte getByte(String parameterName) throws SQLException { return 0; } public short getShort(String parameterName) throws SQLException { return 0; } public int getInt(String parameterName) throws SQLException { return 0; } public long getLong(String parameterName) throws SQLException { return 0; } public float getFloat(String parameterName) throws SQLException { return 0; } public double getDouble(String parameterName) throws SQLException { return 0; } public byte[] getBytes(String parameterName) throws SQLException { return new byte[0]; } public Date getDate(String parameterName) throws SQLException { return null; } public Time getTime(String parameterName) throws SQLException { return null; } public Timestamp getTimestamp(String parameterName) throws SQLException { return null; } public Object getObject(String parameterName) throws SQLException { return null; } public BigDecimal getBigDecimal(String parameterName) throws SQLException { return null; } public Object getObject(String parameterName, Map map) throws SQLException { return null; } public Ref getRef(String parameterName) throws SQLException { return null; } public Blob getBlob(String parameterName) throws SQLException { return null; } public Clob getClob(String parameterName) throws SQLException { return null; } public Array getArray(String parameterName) throws SQLException { return null; } public Date getDate(String parameterName, Calendar cal) throws SQLException { return null; } public Time getTime(String parameterName, Calendar cal) throws SQLException { return null; } public Timestamp getTimestamp(String parameterName, Calendar cal) throws SQLException { return null; } public URL getURL(String parameterName) throws SQLException { return null; } /* JDBC_4_ANT_KEY_BEGIN */ public RowId getRowId(int parameterIndex) throws SQLException { return null; } public RowId getRowId(String parameterName) throws SQLException { return null; } public void setRowId(String parameterName, RowId value) throws SQLException { } public void setNString(String parameterName, String value) throws SQLException { } public void setNCharacterStream(String parameterName, Reader reader, long length) throws SQLException { } public void setNClob(String parameterName, NClob value) throws SQLException { } public void setClob(String parameterName, Reader reader, long length) throws SQLException { } public void setBlob(String parameterName, InputStream inputStream, long length) throws SQLException { } public void setNClob(String parameterName, Reader reader, long length) throws SQLException { } public NClob getNClob(int parameterIndex) throws SQLException { return null; } public NClob getNClob(String parameterName) throws SQLException { return null; } public void setSQLXML(String parameterName, SQLXML value) throws SQLException { } public SQLXML getSQLXML(int parameterIndex) throws SQLException { return null; } public SQLXML getSQLXML(String parameterName) throws SQLException { return null; } public String getNString(int parameterIndex) throws SQLException { return null; } public String getNString(String parameterName) throws SQLException { return null; } public Reader getNCharacterStream(int parameterIndex) throws SQLException { return null; } public Reader getNCharacterStream(String parameterName) throws SQLException { return null; } public Reader getCharacterStream(int parameterIndex) throws SQLException { return null; } public Reader getCharacterStream(String parameterName) throws SQLException { return null; } public void setBlob(String parameterName, Blob blob) throws SQLException { } public void setClob(String parameterName, Clob clob) throws SQLException { } public void setAsciiStream(String parameterName, InputStream inputStream, long length) throws SQLException { } public void setBinaryStream(String parameterName, InputStream inputStream, long length) throws SQLException { } public void setCharacterStream(String parameterName, Reader reader, long length) throws SQLException { } public void setAsciiStream(String parameterName, InputStream inputStream) throws SQLException { } public void setBinaryStream(String parameterName, InputStream inputStream) throws SQLException { } public void setCharacterStream(String parameterName, Reader reader) throws SQLException { } public void setNCharacterStream(String parameterName, Reader reader) throws SQLException { } public void setClob(String parameterName, Reader reader) throws SQLException { } public void setBlob(String parameterName, InputStream inputStream) throws SQLException { } public void setNClob(String parameterName, Reader reader) throws SQLException { } /* JDBC_4_ANT_KEY_END */ } Other Commons DBCP examples (source code examples)Here is a short list of links related to this Commons DBCP TesterCallableStatement.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.