Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.impossibl.postgres.jdbc.PGCallableStatement Maven / Gradle / Ivy
/**
* Copyright (c) 2013, impossibl.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of impossibl.com nor the names of its contributors may
* be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
package com.impossibl.postgres.jdbc;
import com.impossibl.postgres.protocol.QueryCommand;
import com.impossibl.postgres.protocol.ResultField;
import com.impossibl.postgres.types.ArrayType;
import com.impossibl.postgres.types.Type;
import com.impossibl.postgres.utils.guava.ByteStreams;
import static com.impossibl.postgres.jdbc.Exceptions.NOT_IMPLEMENTED;
import static com.impossibl.postgres.jdbc.Exceptions.NOT_SUPPORTED;
import static com.impossibl.postgres.jdbc.Exceptions.PARAMETER_INDEX_OUT_OF_BOUNDS;
import static com.impossibl.postgres.jdbc.SQLTypeUtils.coerce;
import static com.impossibl.postgres.jdbc.SQLTypeUtils.coerceToBigDecimal;
import static com.impossibl.postgres.jdbc.SQLTypeUtils.coerceToBlob;
import static com.impossibl.postgres.jdbc.SQLTypeUtils.coerceToBoolean;
import static com.impossibl.postgres.jdbc.SQLTypeUtils.coerceToByte;
import static com.impossibl.postgres.jdbc.SQLTypeUtils.coerceToByteStream;
import static com.impossibl.postgres.jdbc.SQLTypeUtils.coerceToClob;
import static com.impossibl.postgres.jdbc.SQLTypeUtils.coerceToDate;
import static com.impossibl.postgres.jdbc.SQLTypeUtils.coerceToDouble;
import static com.impossibl.postgres.jdbc.SQLTypeUtils.coerceToFloat;
import static com.impossibl.postgres.jdbc.SQLTypeUtils.coerceToInt;
import static com.impossibl.postgres.jdbc.SQLTypeUtils.coerceToLong;
import static com.impossibl.postgres.jdbc.SQLTypeUtils.coerceToRowId;
import static com.impossibl.postgres.jdbc.SQLTypeUtils.coerceToShort;
import static com.impossibl.postgres.jdbc.SQLTypeUtils.coerceToString;
import static com.impossibl.postgres.jdbc.SQLTypeUtils.coerceToTime;
import static com.impossibl.postgres.jdbc.SQLTypeUtils.coerceToTimestamp;
import static com.impossibl.postgres.jdbc.SQLTypeUtils.coerceToURL;
import static com.impossibl.postgres.jdbc.SQLTypeUtils.coerceToXML;
import static com.impossibl.postgres.jdbc.SQLTypeUtils.mapGetType;
import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;
import java.io.StringReader;
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.Date;
import java.sql.NClob;
import java.sql.Ref;
import java.sql.RowId;
import java.sql.SQLException;
import java.sql.SQLXML;
import java.sql.Time;
import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.List;
import java.util.Map;
import java.util.TimeZone;
import static java.math.RoundingMode.HALF_UP;
import static java.util.Collections.nCopies;
public class PGCallableStatement extends PGPreparedStatement implements CallableStatement {
enum ParameterMode {
In, Out, InOut, Assign
}
String fullSqlText;
List allParameterModes;
List outParameterNames;
List outParameterTypes;
List outParameterValues;
Map> typeMap;
Boolean nullFlag;
PGCallableStatement(PGConnectionImpl connection, int type, int concurrency, int holdability, String name, String sqlText, int parameterCount, String cursorName, boolean hasAssign) throws SQLException {
super(connection, type, concurrency, holdability, name, sqlText, 0, cursorName);
typeMap = connection.getTypeMap();
fullSqlText = sqlText;
allParameterModes = new ArrayList<>(nCopies(parameterCount, (ParameterMode) null));
outParameterNames = new ArrayList<>();
outParameterTypes = new ArrayList<>();
outParameterValues = new ArrayList<>();
if (hasAssign) {
allParameterModes.add(0, ParameterMode.Assign);
}
}
@Override
void parseIfNeeded() throws SQLException {
sqlText = fullSqlText;
for (int c = 0; c < allParameterModes.size(); ++c) {
if (allParameterModes.get(c) == ParameterMode.Out) {
sqlText = sqlText.replaceAll("\\s*\\$" + (c + 1) + "\\s*", "");
}
}
sqlText = sqlText.replaceAll("\\(\\s*,", "(");
sqlText = sqlText.replaceAll(",\\s*,", ",");
sqlText = sqlText.replaceAll(",\\s*\\)", ")");
super.parseIfNeeded();
}
@Override
public boolean execute() throws SQLException {
boolean res = super.execute();
if (!outParameterTypes.isEmpty()) {
if (!resultBatches.isEmpty()) {
QueryCommand.ResultBatch returnValuesBatch = resultBatches.remove(0);
if (returnValuesBatch.fields.size() != outParameterTypes.size()) {
throw new SQLException("incorrect number of out parameters");
}
if (!returnValuesBatch.results.isEmpty()) {
Object[] returnValues = (Object[]) returnValuesBatch.results.get(0);
for (int c = 0; c < outParameterValues.size(); ++c) {
ResultField field = returnValuesBatch.fields.get(c);
outParameterNames.set(c, field.name);
outParameterTypes.set(c, field.typeRef.get());
outParameterValues.set(c, returnValues[c]);
}
}
}
else {
throw new SQLException("out parameters not returned");
}
}
return res;
}
int mapToInParameterIndex(int parameterIdx) {
int inParameterIdx = parameterIdx;
for (int allParameterIdx = 1; allParameterIdx < allParameterModes.size() && allParameterIdx <= parameterIdx; ++allParameterIdx) {
ParameterMode mode = allParameterModes.get(allParameterIdx - 1);
if (mode == ParameterMode.Out || mode == ParameterMode.Assign) {
inParameterIdx--;
}
}
return inParameterIdx;
}
int mapToOutParameterIndex(int parameterIdx) throws SQLException {
if (allParameterModes.get(parameterIdx - 1) == ParameterMode.In) {
throw new SQLException("parameter not available");
}
int outParameterIdx = parameterIdx;
for (int allParameterIdx = 1; allParameterIdx < allParameterModes.size() && allParameterIdx <= parameterIdx; ++allParameterIdx) {
ParameterMode mode = allParameterModes.get(allParameterIdx - 1);
if (mode == ParameterMode.In || mode == null) {
outParameterIdx--;
}
}
return outParameterIdx;
}
int mapFromOutParameterIndex(int outParameterIdx) {
int parameterIdx = 0;
for (int allParameterIdx = 1; allParameterIdx < allParameterModes.size() && allParameterIdx <= outParameterIdx; ++allParameterIdx) {
if (allParameterModes.get(allParameterIdx - 1) == ParameterMode.In) {
parameterIdx++;
}
}
return parameterIdx;
}
Type getOutType(int parameterIdx) throws SQLException {
if (parameterIdx < 1 || parameterIdx > outParameterValues.size()) {
throw PARAMETER_INDEX_OUT_OF_BOUNDS;
}
return outParameterTypes.get(parameterIdx - 1);
}
Object get(int parameterIdx) throws SQLException {
if (parameterIdx < 1 || parameterIdx > outParameterValues.size()) {
throw PARAMETER_INDEX_OUT_OF_BOUNDS;
}
if (command == null) {
throw new SQLException("statement not executed");
}
parameterIdx--;
Object val = outParameterValues.get(parameterIdx);
nullFlag = val == null;
return val;
}
@Override
void set(int parameterIdx, Object val, int targetSQLType) throws SQLException {
ParameterMode mode = allParameterModes.get(parameterIdx - 1);
if (mode == ParameterMode.Out) {
allParameterModes.set(parameterIdx - 1, ParameterMode.InOut);
}
else if (mode == null) {
allParameterModes.set(parameterIdx - 1, ParameterMode.In);
}
parameterIdx = mapToInParameterIndex(parameterIdx);
int needed = parameterIdx > parameterValues.size() ? parameterIdx - parameterValues.size() : 0;
parameterTypes.addAll(nCopies(needed, (Type) null));
parameterValues.addAll(nCopies(needed, (Object) null));
super.set(parameterIdx, val, targetSQLType);
}
int findParameter(String parameterName) throws SQLException {
int idx = outParameterNames.indexOf(parameterName);
if (idx == -1) {
return -1;
}
return mapFromOutParameterIndex(idx);
}
@Override
public void registerOutParameter(int parameterIndex, int sqlType) throws SQLException {
checkClosed();
ParameterMode mode = allParameterModes.get(parameterIndex - 1);
if (mode == ParameterMode.In) {
allParameterModes.set(parameterIndex - 1, ParameterMode.InOut);
}
else if (mode == null) {
allParameterModes.set(parameterIndex - 1, ParameterMode.Out);
}
int outParameterIdx = mapToOutParameterIndex(parameterIndex);
int needed = outParameterIdx > outParameterValues.size() ? outParameterIdx - outParameterValues.size() : 0;
outParameterNames.addAll(nCopies(needed, (String) null));
outParameterTypes.addAll(nCopies(needed, (Type) null));
outParameterValues.addAll(nCopies(needed, (Object) null));
}
@Override
public void registerOutParameter(int parameterIndex, int sqlType, int scale) throws SQLException {
registerOutParameter(parameterIndex, sqlType);
}
@Override
public void registerOutParameter(int parameterIndex, int sqlType, String typeName) throws SQLException {
registerOutParameter(parameterIndex, sqlType);
}
@Override
public void registerOutParameter(String parameterName, int sqlType) throws SQLException {
registerOutParameter(findParameter(parameterName), sqlType);
}
@Override
public void registerOutParameter(String parameterName, int sqlType, int scale) throws SQLException {
registerOutParameter(findParameter(parameterName), sqlType, scale);
}
@Override
public void registerOutParameter(String parameterName, int sqlType, String typeName) throws SQLException {
registerOutParameter(findParameter(parameterName), sqlType, typeName);
}
@Override
public boolean wasNull() throws SQLException {
checkClosed();
if (nullFlag == null)
throw new SQLException("no column fetched");
return nullFlag;
}
@Override
public String getString(int parameterIndex) throws SQLException {
checkClosed();
parameterIndex = mapToOutParameterIndex(parameterIndex);
return coerceToString(get(parameterIndex), connection);
}
@Override
public boolean getBoolean(int parameterIndex) throws SQLException {
checkClosed();
parameterIndex = mapToOutParameterIndex(parameterIndex);
return coerceToBoolean(get(parameterIndex));
}
@Override
public byte getByte(int parameterIndex) throws SQLException {
checkClosed();
parameterIndex = mapToOutParameterIndex(parameterIndex);
return coerceToByte(get(parameterIndex));
}
@Override
public short getShort(int parameterIndex) throws SQLException {
checkClosed();
parameterIndex = mapToOutParameterIndex(parameterIndex);
return coerceToShort(get(parameterIndex));
}
@Override
public int getInt(int parameterIndex) throws SQLException {
checkClosed();
parameterIndex = mapToOutParameterIndex(parameterIndex);
return coerceToInt(get(parameterIndex));
}
@Override
public long getLong(int parameterIndex) throws SQLException {
checkClosed();
parameterIndex = mapToOutParameterIndex(parameterIndex);
return coerceToLong(get(parameterIndex));
}
@Override
public float getFloat(int parameterIndex) throws SQLException {
checkClosed();
parameterIndex = mapToOutParameterIndex(parameterIndex);
return coerceToFloat(get(parameterIndex));
}
@Override
public double getDouble(int parameterIndex) throws SQLException {
checkClosed();
parameterIndex = mapToOutParameterIndex(parameterIndex);
return coerceToDouble(get(parameterIndex));
}
@Override
@Deprecated
public BigDecimal getBigDecimal(int parameterIndex, int scale) throws SQLException {
checkClosed();
parameterIndex = mapToOutParameterIndex(parameterIndex);
BigDecimal val = coerceToBigDecimal(parameterIndex);
if (val == null) {
return null;
}
return val.setScale(scale, HALF_UP);
}
@Override
public BigDecimal getBigDecimal(int parameterIndex) throws SQLException {
checkClosed();
return coerceToBigDecimal(get(parameterIndex));
}
@Override
public byte[] getBytes(int parameterIndex) throws SQLException {
checkClosed();
InputStream data = coerceToByteStream(get(parameterIndex), getOutType(parameterIndex), connection);
if (data == null)
return null;
try {
return ByteStreams.toByteArray(data);
}
catch (IOException e) {
throw new SQLException(e);
}
}
@Override
public Date getDate(int parameterIndex) throws SQLException {
return getDate(parameterIndex, Calendar.getInstance());
}
@Override
public Time getTime(int parameterIndex) throws SQLException {
return getTime(parameterIndex, Calendar.getInstance());
}
@Override
public Timestamp getTimestamp(int parameterIndex) throws SQLException {
return getTimestamp(parameterIndex, Calendar.getInstance());
}
@Override
public Date getDate(int parameterIndex, Calendar cal) throws SQLException {
checkClosed();
TimeZone zone = cal.getTimeZone();
return coerceToDate(get(parameterIndex), zone, connection);
}
@Override
public Time getTime(int parameterIndex, Calendar cal) throws SQLException {
checkClosed();
TimeZone zone = cal.getTimeZone();
return coerceToTime(get(parameterIndex), zone, connection);
}
@Override
public Timestamp getTimestamp(int parameterIndex, Calendar cal) throws SQLException {
checkClosed();
TimeZone zone = cal.getTimeZone();
return coerceToTimestamp(get(parameterIndex), zone, connection);
}
@Override
public Array getArray(int parameterIndex) throws SQLException {
checkClosed();
Object value = get(parameterIndex);
if (value == null)
return null;
Type type = getOutType(parameterIndex);
if (!(type instanceof ArrayType)) {
throw SQLTypeUtils.createCoercionException(value.getClass(), Array.class);
}
return new PGArray(connection, (ArrayType) type, (Object[]) value);
}
@Override
public URL getURL(int parameterIndex) throws SQLException {
checkClosed();
return coerceToURL(get(parameterIndex));
}
@Override
public Reader getCharacterStream(int parameterIndex) throws SQLException {
String data = getString(parameterIndex);
if (data == null)
return null;
return new StringReader(data);
}
@Override
public Blob getBlob(int parameterIndex) throws SQLException {
checkClosed();
return coerceToBlob(get(parameterIndex), connection);
}
@Override
public Clob getClob(int parameterIndex) throws SQLException {
checkClosed();
return coerceToClob(get(parameterIndex), connection);
}
@Override
public SQLXML getSQLXML(int parameterIndex) throws SQLException {
checkClosed();
return coerceToXML(get(parameterIndex), connection);
}
@Override
public Object getObject(int parameterIndex) throws SQLException {
return getObject(parameterIndex, typeMap);
}
@Override
public Object getObject(int parameterIndex, Map> map) throws SQLException {
checkClosed();
Type type = getOutType(parameterIndex);
Class> targetType = mapGetType(type, map, connection);
return coerce(get(parameterIndex), type, targetType, map, connection);
}
@Override
public T getObject(int parameterIndex, Class type) throws SQLException {
checkClosed();
return type.cast(coerce(get(parameterIndex), getOutType(parameterIndex), type, typeMap, connection));
}
@Override
public RowId getRowId(int parameterIndex) throws SQLException {
checkClosed();
return coerceToRowId(get(parameterIndex), getOutType(parameterIndex));
}
@Override
public Ref getRef(int parameterIndex) throws SQLException {
checkClosed();
throw NOT_IMPLEMENTED;
}
@Override
public NClob getNClob(int parameterIndex) throws SQLException {
checkClosed();
throw NOT_SUPPORTED;
}
@Override
public String getNString(int parameterIndex) throws SQLException {
checkClosed();
throw NOT_SUPPORTED;
}
@Override
public Reader getNCharacterStream(int parameterIndex) throws SQLException {
checkClosed();
throw NOT_SUPPORTED;
}
@Override
public String getString(String parameterName) throws SQLException {
return getString(findParameter(parameterName));
}
@Override
public boolean getBoolean(String parameterName) throws SQLException {
return getBoolean(findParameter(parameterName));
}
@Override
public byte getByte(String parameterName) throws SQLException {
return getByte(findParameter(parameterName));
}
@Override
public short getShort(String parameterName) throws SQLException {
return getShort(findParameter(parameterName));
}
@Override
public int getInt(String parameterName) throws SQLException {
return getInt(findParameter(parameterName));
}
@Override
public long getLong(String parameterName) throws SQLException {
return getLong(findParameter(parameterName));
}
@Override
public float getFloat(String parameterName) throws SQLException {
return getFloat(findParameter(parameterName));
}
@Override
public double getDouble(String parameterName) throws SQLException {
return getDouble(findParameter(parameterName));
}
@Override
public byte[] getBytes(String parameterName) throws SQLException {
return getBytes(findParameter(parameterName));
}
@Override
public Date getDate(String parameterName) throws SQLException {
return getDate(findParameter(parameterName));
}
@Override
public Time getTime(String parameterName) throws SQLException {
return getTime(findParameter(parameterName));
}
@Override
public Timestamp getTimestamp(String parameterName) throws SQLException {
return getTimestamp(findParameter(parameterName));
}
@Override
public Object getObject(String parameterName) throws SQLException {
return getObject(findParameter(parameterName));
}
@Override
public BigDecimal getBigDecimal(String parameterName) throws SQLException {
return getBigDecimal(findParameter(parameterName));
}
@Override
public Object getObject(String parameterName, Map> map) throws SQLException {
return getObject(findParameter(parameterName));
}
@Override
public Ref getRef(String parameterName) throws SQLException {
return getRef(findParameter(parameterName));
}
@Override
public Blob getBlob(String parameterName) throws SQLException {
return getBlob(findParameter(parameterName));
}
@Override
public Clob getClob(String parameterName) throws SQLException {
return getClob(findParameter(parameterName));
}
@Override
public Array getArray(String parameterName) throws SQLException {
return getArray(findParameter(parameterName));
}
@Override
public Date getDate(String parameterName, Calendar cal) throws SQLException {
return getDate(findParameter(parameterName));
}
@Override
public Time getTime(String parameterName, Calendar cal) throws SQLException {
return getTime(findParameter(parameterName));
}
@Override
public Timestamp getTimestamp(String parameterName, Calendar cal) throws SQLException {
return getTimestamp(findParameter(parameterName));
}
@Override
public URL getURL(String parameterName) throws SQLException {
return getURL(findParameter(parameterName));
}
@Override
public RowId getRowId(String parameterName) throws SQLException {
return getRowId(findParameter(parameterName));
}
@Override
public NClob getNClob(String parameterName) throws SQLException {
return getNClob(findParameter(parameterName));
}
@Override
public SQLXML getSQLXML(String parameterName) throws SQLException {
return getSQLXML(findParameter(parameterName));
}
@Override
public String getNString(String parameterName) throws SQLException {
return getNString(findParameter(parameterName));
}
@Override
public Reader getNCharacterStream(String parameterName) throws SQLException {
return getNCharacterStream(findParameter(parameterName));
}
@Override
public Reader getCharacterStream(String parameterName) throws SQLException {
return getCharacterStream(findParameter(parameterName));
}
@Override
public T getObject(String parameterName, Class type) throws SQLException {
return getObject(parameterName, type);
}
@Override
public void setNull(String parameterName, int sqlType) throws SQLException {
setNull(findParameter(parameterName), sqlType);
}
@Override
public void setBoolean(String parameterName, boolean x) throws SQLException {
setBoolean(findParameter(parameterName), x);
}
@Override
public void setByte(String parameterName, byte x) throws SQLException {
setByte(findParameter(parameterName), x);
}
@Override
public void setShort(String parameterName, short x) throws SQLException {
setShort(findParameter(parameterName), x);
}
@Override
public void setInt(String parameterName, int x) throws SQLException {
setInt(findParameter(parameterName), x);
}
@Override
public void setLong(String parameterName, long x) throws SQLException {
setLong(findParameter(parameterName), x);
}
@Override
public void setFloat(String parameterName, float x) throws SQLException {
setFloat(findParameter(parameterName), x);
}
@Override
public void setDouble(String parameterName, double x) throws SQLException {
setDouble(findParameter(parameterName), x);
}
@Override
public void setBigDecimal(String parameterName, BigDecimal x) throws SQLException {
setBigDecimal(findParameter(parameterName), x);
}
@Override
public void setString(String parameterName, String x) throws SQLException {
setString(findParameter(parameterName), x);
}
@Override
public void setBytes(String parameterName, byte[] x) throws SQLException {
setBytes(findParameter(parameterName), x);
}
@Override
public void setDate(String parameterName, Date x) throws SQLException {
setDate(findParameter(parameterName), x);
}
@Override
public void setTime(String parameterName, Time x) throws SQLException {
setTime(findParameter(parameterName), x);
}
@Override
public void setTimestamp(String parameterName, Timestamp x) throws SQLException {
setTimestamp(findParameter(parameterName), x);
}
@Override
public void setAsciiStream(String parameterName, InputStream x, int length) throws SQLException {
setAsciiStream(findParameter(parameterName), x, length);
}
@Override
public void setBinaryStream(String parameterName, InputStream x, int length) throws SQLException {
setBinaryStream(findParameter(parameterName), x, length);
}
@Override
public void setObject(String parameterName, Object x, int targetSqlType, int scale) throws SQLException {
setObject(findParameter(parameterName), x, targetSqlType, scale);
}
@Override
public void setObject(String parameterName, Object x, int targetSqlType) throws SQLException {
setObject(findParameter(parameterName), x, targetSqlType);
}
@Override
public void setObject(String parameterName, Object x) throws SQLException {
setObject(findParameter(parameterName), x);
}
@Override
public void setCharacterStream(String parameterName, Reader reader, int length) throws SQLException {
set(findParameter(parameterName), reader, length);
}
@Override
public void setDate(String parameterName, Date x, Calendar cal) throws SQLException {
setDate(findParameter(parameterName), x, cal);
}
@Override
public void setTime(String parameterName, Time x, Calendar cal) throws SQLException {
setTime(findParameter(parameterName), x, cal);
}
@Override
public void setTimestamp(String parameterName, Timestamp x, Calendar cal) throws SQLException {
setTimestamp(findParameter(parameterName), x, cal);
}
@Override
public void setNull(String parameterName, int sqlType, String typeName) throws SQLException {
setNull(findParameter(parameterName), sqlType, typeName);
}
@Override
public void setRowId(String parameterName, RowId x) throws SQLException {
setRowId(parameterName, x);
}
@Override
public void setNString(String parameterName, String value) throws SQLException {
setNString(parameterName, value);
}
@Override
public void setNCharacterStream(String parameterName, Reader value, long length) throws SQLException {
setNCharacterStream(parameterName, value, length);
}
@Override
public void setNClob(String parameterName, NClob value) throws SQLException {
setNClob(parameterName, value);
}
@Override
public void setClob(String parameterName, Reader reader, long length) throws SQLException {
setClob(parameterName, reader, length);
}
@Override
public void setBlob(String parameterName, InputStream inputStream, long length) throws SQLException {
setBlob(parameterName, inputStream, length);
}
@Override
public void setNClob(String parameterName, Reader reader, long length) throws SQLException {
setNClob(parameterName, reader, length);
}
@Override
public void setBlob(String parameterName, Blob x) throws SQLException {
setBlob(parameterName, x);
}
@Override
public void setClob(String parameterName, Clob x) throws SQLException {
setClob(parameterName, x);
}
@Override
public void setSQLXML(String parameterName, SQLXML xmlObject) throws SQLException {
setSQLXML(parameterName, xmlObject);
}
@Override
public void setURL(String parameterName, URL val) throws SQLException {
setURL(findParameter(parameterName), val);
}
@Override
public void setAsciiStream(String parameterName, InputStream x, long length) throws SQLException {
setAsciiStream(findParameter(parameterName), x, length);
}
@Override
public void setBinaryStream(String parameterName, InputStream x, long length) throws SQLException {
setBinaryStream(findParameter(parameterName), x, length);
}
@Override
public void setCharacterStream(String parameterName, Reader reader, long length) throws SQLException {
setCharacterStream(findParameter(parameterName), reader, length);
}
@Override
public void setAsciiStream(String parameterName, InputStream x) throws SQLException {
setAsciiStream(findParameter(parameterName), x);
}
@Override
public void setBinaryStream(String parameterName, InputStream x) throws SQLException {
setBinaryStream(findParameter(parameterName), x);
}
@Override
public void setCharacterStream(String parameterName, Reader reader) throws SQLException {
setCharacterStream(findParameter(parameterName), reader);
}
@Override
public void setNCharacterStream(String parameterName, Reader value) throws SQLException {
setNCharacterStream(findParameter(parameterName), value);
}
@Override
public void setClob(String parameterName, Reader reader) throws SQLException {
setClob(findParameter(parameterName), reader);
}
@Override
public void setBlob(String parameterName, InputStream inputStream) throws SQLException {
setBlob(findParameter(parameterName), inputStream);
}
@Override
public void setNClob(String parameterName, Reader reader) throws SQLException {
setNClob(findParameter(parameterName), reader);
}
}