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

org.voltdb.jdbc.JDBC4CallableStatement Maven / Gradle / Ivy

There is a newer version: 13.3.2-preview1
Show newest version
/* This file is part of VoltDB.
 * Copyright (C) 2008-2017 VoltDB Inc.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with VoltDB.  If not, see .
 */

package org.voltdb.jdbc;

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.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.Calendar;
import java.util.Map;

public class JDBC4CallableStatement extends JDBC4PreparedStatement implements java.sql.CallableStatement
{
    JDBC4CallableStatement(JDBC4Connection connection, String sql) throws SQLException
    {
        super(connection, sql, true);
    }

    // Retrieves the value of the designated JDBC ARRAY parameter as an Array object in the Java programming language.
    @Override
    public Array getArray(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a JDBC ARRAY parameter as an Array object in the Java programming language.
    @Override
    public Array getArray(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC NUMERIC parameter as a java.math.BigDecimal object with as many digits to the right of the decimal point as the value contains.
    @Override
    public BigDecimal getBigDecimal(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Deprecated. use getBigDecimal(int parameterIndex) or getBigDecimal(String parameterName)
    @Override
    @Deprecated
    public BigDecimal getBigDecimal(int parameterIndex, int scale) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a JDBC NUMERIC parameter as a java.math.BigDecimal object with as many digits to the right of the decimal point as the value contains.
    @Override
    public BigDecimal getBigDecimal(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC BLOB parameter as a Blob object in the Java programming language.
    @Override
    public Blob getBlob(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a JDBC BLOB parameter as a Blob object in the Java programming language.
    @Override
    public Blob getBlob(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC BIT or BOOLEAN parameter as a boolean in the Java programming language.
    @Override
    public boolean getBoolean(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a JDBC BIT or BOOLEAN parameter as a boolean in the Java programming language.
    @Override
    public boolean getBoolean(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC TINYINT parameter as a byte in the Java programming language.
    @Override
    public byte getByte(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a JDBC TINYINT parameter as a byte in the Java programming language.
    @Override
    public byte getByte(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC BINARY or VARBINARY parameter as an array of byte values in the Java programming language.
    @Override
    public byte[] getBytes(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a JDBC BINARY or VARBINARY parameter as an array of byte values in the Java programming language.
    @Override
    public byte[] getBytes(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated parameter as a java.io.Reader object in the Java programming language.
    @Override
    public Reader getCharacterStream(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated parameter as a java.io.Reader object in the Java programming language.
    @Override
    public Reader getCharacterStream(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC CLOB parameter as a java.sql.Clob object in the Java programming language.
    @Override
    public Clob getClob(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a JDBC CLOB parameter as a java.sql.Clob object in the Java programming language.
    @Override
    public Clob getClob(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC DATE parameter as a java.sql.Date object.
    @Override
    public Date getDate(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC DATE parameter as a java.sql.Date object, using the given Calendar object to construct the date.
    @Override
    public Date getDate(int parameterIndex, Calendar cal) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a JDBC DATE parameter as a java.sql.Date object.
    @Override
    public Date getDate(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a JDBC DATE parameter as a java.sql.Date object, using the given Calendar object to construct the date.
    @Override
    public Date getDate(String parameterName, Calendar cal) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC DOUBLE parameter as a double in the Java programming language.
    @Override
    public double getDouble(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a JDBC DOUBLE parameter as a double in the Java programming language.
    @Override
    public double getDouble(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC FLOAT parameter as a float in the Java programming language.
    @Override
    public float getFloat(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a JDBC FLOAT parameter as a float in the Java programming language.
    @Override
    public float getFloat(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC INTEGER parameter as an int in the Java programming language.
    @Override
    public int getInt(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a JDBC INTEGER parameter as an int in the Java programming language.
    @Override
    public int getInt(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC BIGINT parameter as a long in the Java programming language.
    @Override
    public long getLong(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a JDBC BIGINT parameter as a long in the Java programming language.
    @Override
    public long getLong(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated parameter as a java.io.Reader object in the Java programming language.
    @Override
    public Reader getNCharacterStream(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated parameter as a java.io.Reader object in the Java programming language.
    @Override
    public Reader getNCharacterStream(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC NCLOB parameter as a java.sql.NClob object in the Java programming language.
    @Override
    public NClob getNClob(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a JDBC NCLOB parameter as a java.sql.NClob object in the Java programming language.
    @Override
    public NClob getNClob(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated NCHAR, NVARCHAR or LONGNVARCHAR parameter as a String in the Java programming language.
    @Override
    public String getNString(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated NCHAR, NVARCHAR or LONGNVARCHAR parameter as a String in the Java programming language.
    @Override
    public String getNString(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated parameter as an Object in the Java programming language.
    @Override
    public Object getObject(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Returns an object representing the value of OUT parameter parameterIndex and uses map for the custom mapping of the parameter value.
    @Override
    public Object getObject(int parameterIndex, Map> map) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a parameter as an Object in the Java programming language.
    @Override
    public Object getObject(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Returns an object representing the value of OUT parameter parameterName and uses map for the custom mapping of the parameter value.
    @Override
    public Object getObject(String parameterName, Map> map) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC REF() parameter as a Ref object in the Java programming language.
    @Override
    public Ref getRef(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a JDBC REF() parameter as a Ref object in the Java programming language.
    @Override
    public Ref getRef(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC ROWID parameter as a java.sql.RowId object.
    @Override
    public RowId getRowId(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC ROWID parameter as a java.sql.RowId object.
    @Override
    public RowId getRowId(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC SMALLINT parameter as a short in the Java programming language.
    @Override
    public short getShort(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a JDBC SMALLINT parameter as a short in the Java programming language.
    @Override
    public short getShort(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated SQL XML parameter as a java.sql.SQLXML object in the Java programming language.
    @Override
    public SQLXML getSQLXML(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated SQL XML parameter as a java.sql.SQLXML object in the Java programming language.
    @Override
    public SQLXML getSQLXML(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC CHAR, VARCHAR, or LONGVARCHAR parameter as a String in the Java programming language.
    @Override
    public String getString(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a JDBC CHAR, VARCHAR, or LONGVARCHAR parameter as a String in the Java programming language.
    @Override
    public String getString(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC TIME parameter as a java.sql.Time object.
    @Override
    public Time getTime(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC TIME parameter as a java.sql.Time object, using the given Calendar object to construct the time.
    @Override
    public Time getTime(int parameterIndex, Calendar cal) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a JDBC TIME parameter as a java.sql.Time object.
    @Override
    public Time getTime(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a JDBC TIME parameter as a java.sql.Time object, using the given Calendar object to construct the time.
    @Override
    public Time getTime(String parameterName, Calendar cal) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC TIMESTAMP parameter as a java.sql.Timestamp object.
    @Override
    public Timestamp getTimestamp(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC TIMESTAMP parameter as a java.sql.Timestamp object, using the given Calendar object to construct the Timestamp object.
    @Override
    public Timestamp getTimestamp(int parameterIndex, Calendar cal) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a JDBC TIMESTAMP parameter as a java.sql.Timestamp object.
    @Override
    public Timestamp getTimestamp(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a JDBC TIMESTAMP parameter as a java.sql.Timestamp object, using the given Calendar object to construct the Timestamp object.
    @Override
    public Timestamp getTimestamp(String parameterName, Calendar cal) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of the designated JDBC DATALINK parameter as a java.net.URL object.
    @Override
    public URL getURL(int parameterIndex) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves the value of a JDBC DATALINK parameter as a java.net.URL object.
    @Override
    public URL getURL(String parameterName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Registers the OUT parameter in ordinal position parameterIndex to the JDBC type sqlType.
    @Override
    public void registerOutParameter(int parameterIndex, int sqlType) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Registers the parameter in ordinal position parameterIndex to be of JDBC type sqlType.
    @Override
    public void registerOutParameter(int parameterIndex, int sqlType, int scale) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Registers the designated output parameter.
    @Override
    public void registerOutParameter(int parameterIndex, int sqlType, String typeName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Registers the OUT parameter named parameterName to the JDBC type sqlType.
    @Override
    public void registerOutParameter(String parameterName, int sqlType) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Registers the parameter named parameterName to be of JDBC type sqlType.
    @Override
    public void registerOutParameter(String parameterName, int sqlType, int scale) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Registers the designated output parameter.
    @Override
    public void registerOutParameter(String parameterName, int sqlType, String typeName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given input stream.
    @Override
    public void setAsciiStream(String parameterName, InputStream x) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given input stream, which will have the specified number of bytes.
    @Override
    public void setAsciiStream(String parameterName, InputStream x, int length) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given input stream, which will have the specified number of bytes.
    @Override
    public void setAsciiStream(String parameterName, InputStream x, long length) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given java.math.BigDecimal value.
    @Override
    public void setBigDecimal(String parameterName, BigDecimal x) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given input stream.
    @Override
    public void setBinaryStream(String parameterName, InputStream x) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given input stream, which will have the specified number of bytes.
    @Override
    public void setBinaryStream(String parameterName, InputStream x, int length) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given input stream, which will have the specified number of bytes.
    @Override
    public void setBinaryStream(String parameterName, InputStream x, long length) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given java.sql.Blob object.
    @Override
    public void setBlob(String parameterName, Blob x) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to a InputStream object.
    @Override
    public void setBlob(String parameterName, InputStream inputStream) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to a InputStream object.
    @Override
    public void setBlob(String parameterName, InputStream inputStream, long length) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given Java boolean value.
    @Override
    public void setBoolean(String parameterName, boolean x) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given Java byte value.
    @Override
    public void setByte(String parameterName, byte x) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given Java array of bytes.
    @Override
    public void setBytes(String parameterName, byte[] x) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given Reader object.
    @Override
    public void setCharacterStream(String parameterName, Reader reader) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given Reader object, which is the given number of characters long.
    @Override
    public void setCharacterStream(String parameterName, Reader reader, int length) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given Reader object, which is the given number of characters long.
    @Override
    public void setCharacterStream(String parameterName, Reader reader, long length) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given java.sql.Clob object.
    @Override
    public void setClob(String parameterName, Clob x) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to a Reader object.
    @Override
    public void setClob(String parameterName, Reader reader) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to a Reader object.
    @Override
    public void setClob(String parameterName, Reader reader, long length) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given java.sql.Date value using the default time zone of the virtual machine that is running the application.
    @Override
    public void setDate(String parameterName, Date x) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given java.sql.Date value, using the given Calendar object.
    @Override
    public void setDate(String parameterName, Date x, Calendar cal) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given Java double value.
    @Override
    public void setDouble(String parameterName, double x) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given Java float value.
    @Override
    public void setFloat(String parameterName, float x) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given Java int value.
    @Override
    public void setInt(String parameterName, int x) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given Java long value.
    @Override
    public void setLong(String parameterName, long x) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to a Reader object.
    @Override
    public void setNCharacterStream(String parameterName, Reader value) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to a Reader object.
    @Override
    public void setNCharacterStream(String parameterName, Reader value, long length) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to a java.sql.NClob object.
    @Override
    public void setNClob(String parameterName, NClob value) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to a Reader object.
    @Override
    public void setNClob(String parameterName, Reader reader) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to a Reader object.
    @Override
    public void setNClob(String parameterName, Reader reader, long length) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given String object.
    @Override
    public void setNString(String parameterName, String value) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to SQL NULL.
    @Override
    public void setNull(String parameterName, int sqlType) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to SQL NULL.
    @Override
    public void setNull(String parameterName, int sqlType, String typeName) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the value of the designated parameter with the given object.
    @Override
    public void setObject(String parameterName, Object x) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the value of the designated parameter with the given object.
    @Override
    public void setObject(String parameterName, Object x, int targetSqlType) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the value of the designated parameter with the given object.
    @Override
    public void setObject(String parameterName, Object x, int targetSqlType, int scale) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given java.sql.RowId object.
    @Override
    public void setRowId(String parameterName, RowId x) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given Java short value.
    @Override
    public void setShort(String parameterName, short x) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given java.sql.SQLXML object.
    @Override
    public void setSQLXML(String parameterName, SQLXML xmlObject) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given Java String value.
    @Override
    public void setString(String parameterName, String x) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given java.sql.Time value.
    @Override
    public void setTime(String parameterName, Time x) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given java.sql.Time value, using the given Calendar object.
    @Override
    public void setTime(String parameterName, Time x, Calendar cal) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given java.sql.Timestamp value.
    @Override
    public void setTimestamp(String parameterName, Timestamp x) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given java.sql.Timestamp value, using the given Calendar object.
    @Override
    public void setTimestamp(String parameterName, Timestamp x, Calendar cal) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Sets the designated parameter to the given java.net.URL object.
    @Override
    public void setURL(String parameterName, URL val) throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    // Retrieves whether the last OUT parameter read had the value of SQL NULL.
    @Override
    public boolean wasNull() throws SQLException
    {
        checkClosed();
        throw SQLError.noSupport();
    }

    public void closeOnCompletion() throws SQLException {
        throw SQLError.noSupport();
    }

    public boolean isCloseOnCompletion() throws SQLException {
        throw SQLError.noSupport();
    }

    public  T getObject(int parameterIndex, Class type)
            throws SQLException {
        checkClosed();
        throw SQLError.noSupport();
    }

    public  T getObject(String parameterName, Class type)
            throws SQLException {
        checkClosed();
        throw SQLError.noSupport();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy