- All Superinterfaces:
- AutoCloseable,- PreparedStatement,- Statement,- Wrapper
public interface CallableStatement extends PreparedStatement
   {?= call <procedure-name>[(<arg1>,<arg2>, ...)]}
   {call <procedure-name>[(<arg1>,<arg2>, ...)]}
 
 
 IN parameter values are set using the set methods inherited from
 PreparedStatement.  The type of all OUT parameters must be
 registered prior to executing the stored procedure; their values
 are retrieved after execution via the get methods provided here.
 
 A CallableStatement can return one ResultSet object or
 multiple ResultSet objects.  Multiple
 ResultSet objects are handled using operations
 inherited from Statement.
 
 For maximum portability, a call's ResultSet objects and
 update counts should be processed prior to getting the values of output
 parameters.
- Since:
- 1.1
- See Also:
- Connection.prepareCall(java.lang.String),- ResultSet
- 
Field SummaryFields declared in interface java.sql.StatementCLOSE_ALL_RESULTS, CLOSE_CURRENT_RESULT, EXECUTE_FAILED, KEEP_CURRENT_RESULT, NO_GENERATED_KEYS, RETURN_GENERATED_KEYS, SUCCESS_NO_INFO
- 
Method SummaryModifier and Type Method Description ArraygetArray(int parameterIndex)Retrieves the value of the designated JDBCARRAYparameter as anArrayobject in the Java programming language.ArraygetArray(String parameterName)Retrieves the value of a JDBCARRAYparameter as anArrayobject in the Java programming language.BigDecimalgetBigDecimal(int parameterIndex)Retrieves the value of the designated JDBCNUMERICparameter as ajava.math.BigDecimalobject with as many digits to the right of the decimal point as the value contains.BigDecimalgetBigDecimal(int parameterIndex, int scale)Deprecated.usegetBigDecimal(int parameterIndex)orgetBigDecimal(String parameterName)BigDecimalgetBigDecimal(String parameterName)Retrieves the value of a JDBCNUMERICparameter as ajava.math.BigDecimalobject with as many digits to the right of the decimal point as the value contains.BlobgetBlob(int parameterIndex)Retrieves the value of the designated JDBCBLOBparameter as aBlobobject in the Java programming language.BlobgetBlob(String parameterName)Retrieves the value of a JDBCBLOBparameter as aBlobobject in the Java programming language.booleangetBoolean(int parameterIndex)Retrieves the value of the designated JDBCBITorBOOLEANparameter as abooleanin the Java programming language.booleangetBoolean(String parameterName)Retrieves the value of a JDBCBITorBOOLEANparameter as abooleanin the Java programming language.bytegetByte(int parameterIndex)Retrieves the value of the designated JDBCTINYINTparameter as abytein the Java programming language.bytegetByte(String parameterName)Retrieves the value of a JDBCTINYINTparameter as abytein the Java programming language.byte[]getBytes(int parameterIndex)Retrieves the value of the designated JDBCBINARYorVARBINARYparameter as an array ofbytevalues in the Java programming language.byte[]getBytes(String parameterName)Retrieves the value of a JDBCBINARYorVARBINARYparameter as an array ofbytevalues in the Java programming language.ReadergetCharacterStream(int parameterIndex)Retrieves the value of the designated parameter as ajava.io.Readerobject in the Java programming language.ReadergetCharacterStream(String parameterName)Retrieves the value of the designated parameter as ajava.io.Readerobject in the Java programming language.ClobgetClob(int parameterIndex)Retrieves the value of the designated JDBCCLOBparameter as ajava.sql.Clobobject in the Java programming language.ClobgetClob(String parameterName)Retrieves the value of a JDBCCLOBparameter as ajava.sql.Clobobject in the Java programming language.DategetDate(int parameterIndex)Retrieves the value of the designated JDBCDATEparameter as ajava.sql.Dateobject.DategetDate(int parameterIndex, Calendar cal)Retrieves the value of the designated JDBCDATEparameter as ajava.sql.Dateobject, using the givenCalendarobject to construct the date.DategetDate(String parameterName)Retrieves the value of a JDBCDATEparameter as ajava.sql.Dateobject.DategetDate(String parameterName, Calendar cal)Retrieves the value of a JDBCDATEparameter as ajava.sql.Dateobject, using the givenCalendarobject to construct the date.doublegetDouble(int parameterIndex)Retrieves the value of the designated JDBCDOUBLEparameter as adoublein the Java programming language.doublegetDouble(String parameterName)Retrieves the value of a JDBCDOUBLEparameter as adoublein the Java programming language.floatgetFloat(int parameterIndex)Retrieves the value of the designated JDBCFLOATparameter as afloatin the Java programming language.floatgetFloat(String parameterName)Retrieves the value of a JDBCFLOATparameter as afloatin the Java programming language.intgetInt(int parameterIndex)Retrieves the value of the designated JDBCINTEGERparameter as anintin the Java programming language.intgetInt(String parameterName)Retrieves the value of a JDBCINTEGERparameter as anintin the Java programming language.longgetLong(int parameterIndex)Retrieves the value of the designated JDBCBIGINTparameter as alongin the Java programming language.longgetLong(String parameterName)Retrieves the value of a JDBCBIGINTparameter as alongin the Java programming language.ReadergetNCharacterStream(int parameterIndex)Retrieves the value of the designated parameter as ajava.io.Readerobject in the Java programming language.ReadergetNCharacterStream(String parameterName)Retrieves the value of the designated parameter as ajava.io.Readerobject in the Java programming language.NClobgetNClob(int parameterIndex)Retrieves the value of the designated JDBCNCLOBparameter as ajava.sql.NClobobject in the Java programming language.NClobgetNClob(String parameterName)Retrieves the value of a JDBCNCLOBparameter as ajava.sql.NClobobject in the Java programming language.StringgetNString(int parameterIndex)Retrieves the value of the designatedNCHAR,NVARCHARorLONGNVARCHARparameter as aStringin the Java programming language.StringgetNString(String parameterName)Retrieves the value of the designatedNCHAR,NVARCHARorLONGNVARCHARparameter as aStringin the Java programming language.ObjectgetObject(int parameterIndex)Retrieves the value of the designated parameter as anObjectin the Java programming language.<T> TgetObject(int parameterIndex, Class<T> type)Returns an object representing the value of OUT parameterparameterIndexand will convert from the SQL type of the parameter to the requested Java data type, if the conversion is supported.ObjectgetObject(int parameterIndex, Map<String,Class<?>> map)Returns an object representing the value of OUT parameterparameterIndexand usesmapfor the custom mapping of the parameter value.ObjectgetObject(String parameterName)Retrieves the value of a parameter as anObjectin the Java programming language.<T> TgetObject(String parameterName, Class<T> type)Returns an object representing the value of OUT parameterparameterNameand will convert from the SQL type of the parameter to the requested Java data type, if the conversion is supported.ObjectgetObject(String parameterName, Map<String,Class<?>> map)Returns an object representing the value of OUT parameterparameterNameand usesmapfor the custom mapping of the parameter value.RefgetRef(int parameterIndex)Retrieves the value of the designated JDBCREF(<structured-type>)parameter as aRefobject in the Java programming language.RefgetRef(String parameterName)Retrieves the value of a JDBCREF(<structured-type>)parameter as aRefobject in the Java programming language.RowIdgetRowId(int parameterIndex)Retrieves the value of the designated JDBCROWIDparameter as ajava.sql.RowIdobject.RowIdgetRowId(String parameterName)Retrieves the value of the designated JDBCROWIDparameter as ajava.sql.RowIdobject.shortgetShort(int parameterIndex)Retrieves the value of the designated JDBCSMALLINTparameter as ashortin the Java programming language.shortgetShort(String parameterName)Retrieves the value of a JDBCSMALLINTparameter as ashortin the Java programming language.SQLXMLgetSQLXML(int parameterIndex)Retrieves the value of the designatedSQL XMLparameter as ajava.sql.SQLXMLobject in the Java programming language.SQLXMLgetSQLXML(String parameterName)Retrieves the value of the designatedSQL XMLparameter as ajava.sql.SQLXMLobject in the Java programming language.StringgetString(int parameterIndex)Retrieves the value of the designated JDBCCHAR,VARCHAR, orLONGVARCHARparameter as aStringin the Java programming language.StringgetString(String parameterName)Retrieves the value of a JDBCCHAR,VARCHAR, orLONGVARCHARparameter as aStringin the Java programming language.TimegetTime(int parameterIndex)Retrieves the value of the designated JDBCTIMEparameter as ajava.sql.Timeobject.TimegetTime(int parameterIndex, Calendar cal)Retrieves the value of the designated JDBCTIMEparameter as ajava.sql.Timeobject, using the givenCalendarobject to construct the time.TimegetTime(String parameterName)Retrieves the value of a JDBCTIMEparameter as ajava.sql.Timeobject.TimegetTime(String parameterName, Calendar cal)Retrieves the value of a JDBCTIMEparameter as ajava.sql.Timeobject, using the givenCalendarobject to construct the time.TimestampgetTimestamp(int parameterIndex)Retrieves the value of the designated JDBCTIMESTAMPparameter as ajava.sql.Timestampobject.TimestampgetTimestamp(int parameterIndex, Calendar cal)Retrieves the value of the designated JDBCTIMESTAMPparameter as ajava.sql.Timestampobject, using the givenCalendarobject to construct theTimestampobject.TimestampgetTimestamp(String parameterName)Retrieves the value of a JDBCTIMESTAMPparameter as ajava.sql.Timestampobject.TimestampgetTimestamp(String parameterName, Calendar cal)Retrieves the value of a JDBCTIMESTAMPparameter as ajava.sql.Timestampobject, using the givenCalendarobject to construct theTimestampobject.URLgetURL(int parameterIndex)Retrieves the value of the designated JDBCDATALINKparameter as ajava.net.URLobject.URLgetURL(String parameterName)Retrieves the value of a JDBCDATALINKparameter as ajava.net.URLobject.voidregisterOutParameter(int parameterIndex, int sqlType)Registers the OUT parameter in ordinal positionparameterIndexto the JDBC typesqlType.voidregisterOutParameter(int parameterIndex, int sqlType, int scale)Registers the parameter in ordinal positionparameterIndexto be of JDBC typesqlType.voidregisterOutParameter(int parameterIndex, int sqlType, String typeName)Registers the designated output parameter.default voidregisterOutParameter(int parameterIndex, SQLType sqlType)Registers the OUT parameter in ordinal positionparameterIndexto the JDBC typesqlType.default voidregisterOutParameter(int parameterIndex, SQLType sqlType, int scale)Registers the parameter in ordinal positionparameterIndexto be of JDBC typesqlType.default voidregisterOutParameter(int parameterIndex, SQLType sqlType, String typeName)Registers the designated output parameter.voidregisterOutParameter(String parameterName, int sqlType)Registers the OUT parameter namedparameterNameto the JDBC typesqlType.voidregisterOutParameter(String parameterName, int sqlType, int scale)Registers the parameter namedparameterNameto be of JDBC typesqlType.voidregisterOutParameter(String parameterName, int sqlType, String typeName)Registers the designated output parameter.default voidregisterOutParameter(String parameterName, SQLType sqlType)Registers the OUT parameter namedparameterNameto the JDBC typesqlType.default voidregisterOutParameter(String parameterName, SQLType sqlType, int scale)Registers the parameter namedparameterNameto be of JDBC typesqlType.default voidregisterOutParameter(String parameterName, SQLType sqlType, String typeName)Registers the designated output parameter.voidsetAsciiStream(String parameterName, InputStream x)Sets the designated parameter to the given input stream.voidsetAsciiStream(String parameterName, InputStream x, int length)Sets the designated parameter to the given input stream, which will have the specified number of bytes.voidsetAsciiStream(String parameterName, InputStream x, long length)Sets the designated parameter to the given input stream, which will have the specified number of bytes.voidsetBigDecimal(String parameterName, BigDecimal x)Sets the designated parameter to the givenjava.math.BigDecimalvalue.voidsetBinaryStream(String parameterName, InputStream x)Sets the designated parameter to the given input stream.voidsetBinaryStream(String parameterName, InputStream x, int length)Sets the designated parameter to the given input stream, which will have the specified number of bytes.voidsetBinaryStream(String parameterName, InputStream x, long length)Sets the designated parameter to the given input stream, which will have the specified number of bytes.voidsetBlob(String parameterName, InputStream inputStream)Sets the designated parameter to anInputStreamobject.voidsetBlob(String parameterName, InputStream inputStream, long length)Sets the designated parameter to anInputStreamobject.voidsetBlob(String parameterName, Blob x)Sets the designated parameter to the givenjava.sql.Blobobject.voidsetBoolean(String parameterName, boolean x)Sets the designated parameter to the given Javabooleanvalue.voidsetByte(String parameterName, byte x)Sets the designated parameter to the given Javabytevalue.voidsetBytes(String parameterName, byte[] x)Sets the designated parameter to the given Java array of bytes.voidsetCharacterStream(String parameterName, Reader reader)Sets the designated parameter to the givenReaderobject.voidsetCharacterStream(String parameterName, Reader reader, int length)Sets the designated parameter to the givenReaderobject, which is the given number of characters long.voidsetCharacterStream(String parameterName, Reader reader, long length)Sets the designated parameter to the givenReaderobject, which is the given number of characters long.voidsetClob(String parameterName, Reader reader)Sets the designated parameter to aReaderobject.voidsetClob(String parameterName, Reader reader, long length)Sets the designated parameter to aReaderobject.voidsetClob(String parameterName, Clob x)Sets the designated parameter to the givenjava.sql.Clobobject.voidsetDate(String parameterName, Date x)Sets the designated parameter to the givenjava.sql.Datevalue using the default time zone of the virtual machine that is running the application.voidsetDate(String parameterName, Date x, Calendar cal)Sets the designated parameter to the givenjava.sql.Datevalue, using the givenCalendarobject.voidsetDouble(String parameterName, double x)Sets the designated parameter to the given Javadoublevalue.voidsetFloat(String parameterName, float x)Sets the designated parameter to the given Javafloatvalue.voidsetInt(String parameterName, int x)Sets the designated parameter to the given Javaintvalue.voidsetLong(String parameterName, long x)Sets the designated parameter to the given Javalongvalue.voidsetNCharacterStream(String parameterName, Reader value)Sets the designated parameter to aReaderobject.voidsetNCharacterStream(String parameterName, Reader value, long length)Sets the designated parameter to aReaderobject.voidsetNClob(String parameterName, Reader reader)Sets the designated parameter to aReaderobject.voidsetNClob(String parameterName, Reader reader, long length)Sets the designated parameter to aReaderobject.voidsetNClob(String parameterName, NClob value)Sets the designated parameter to ajava.sql.NClobobject.voidsetNString(String parameterName, String value)Sets the designated parameter to the givenStringobject.voidsetNull(String parameterName, int sqlType)Sets the designated parameter to SQLNULL.voidsetNull(String parameterName, int sqlType, String typeName)Sets the designated parameter to SQLNULL.voidsetObject(String parameterName, Object x)Sets the value of the designated parameter with the given object.voidsetObject(String parameterName, Object x, int targetSqlType)Sets the value of the designated parameter with the given object.voidsetObject(String parameterName, Object x, int targetSqlType, int scale)Sets the value of the designated parameter with the given object.default voidsetObject(String parameterName, Object x, SQLType targetSqlType)Sets the value of the designated parameter with the given object.default voidsetObject(String parameterName, Object x, SQLType targetSqlType, int scaleOrLength)Sets the value of the designated parameter with the given object.voidsetRowId(String parameterName, RowId x)Sets the designated parameter to the givenjava.sql.RowIdobject.voidsetShort(String parameterName, short x)Sets the designated parameter to the given Javashortvalue.voidsetSQLXML(String parameterName, SQLXML xmlObject)Sets the designated parameter to the givenjava.sql.SQLXMLobject.voidsetString(String parameterName, String x)Sets the designated parameter to the given JavaStringvalue.voidsetTime(String parameterName, Time x)Sets the designated parameter to the givenjava.sql.Timevalue.voidsetTime(String parameterName, Time x, Calendar cal)Sets the designated parameter to the givenjava.sql.Timevalue, using the givenCalendarobject.voidsetTimestamp(String parameterName, Timestamp x)Sets the designated parameter to the givenjava.sql.Timestampvalue.voidsetTimestamp(String parameterName, Timestamp x, Calendar cal)Sets the designated parameter to the givenjava.sql.Timestampvalue, using the givenCalendarobject.voidsetURL(String parameterName, URL val)Sets the designated parameter to the givenjava.net.URLobject.booleanwasNull()Retrieves whether the last OUT parameter read had the value of SQLNULL.Methods declared in interface java.sql.PreparedStatementaddBatch, clearParameters, execute, executeLargeUpdate, executeQuery, executeUpdate, getMetaData, getParameterMetaData, setArray, setAsciiStream, setAsciiStream, setAsciiStream, setBigDecimal, setBinaryStream, setBinaryStream, setBinaryStream, setBlob, setBlob, setBlob, setBoolean, setByte, setBytes, setCharacterStream, setCharacterStream, setCharacterStream, setClob, setClob, setClob, setDate, setDate, setDouble, setFloat, setInt, setLong, setNCharacterStream, setNCharacterStream, setNClob, setNClob, setNClob, setNString, setNull, setNull, setObject, setObject, setObject, setObject, setObject, setRef, setRowId, setShort, setSQLXML, setString, setTime, setTime, setTimestamp, setTimestamp, setUnicodeStream, setURLMethods declared in interface java.sql.StatementaddBatch, cancel, clearBatch, clearWarnings, close, closeOnCompletion, enquoteIdentifier, enquoteLiteral, enquoteNCharLiteral, execute, execute, execute, execute, executeBatch, executeLargeBatch, executeLargeUpdate, executeLargeUpdate, executeLargeUpdate, executeLargeUpdate, executeQuery, executeUpdate, executeUpdate, executeUpdate, executeUpdate, getConnection, getFetchDirection, getFetchSize, getGeneratedKeys, getLargeMaxRows, getLargeUpdateCount, getMaxFieldSize, getMaxRows, getMoreResults, getMoreResults, getQueryTimeout, getResultSet, getResultSetConcurrency, getResultSetHoldability, getResultSetType, getUpdateCount, getWarnings, isClosed, isCloseOnCompletion, isPoolable, isSimpleIdentifier, setCursorName, setEscapeProcessing, setFetchDirection, setFetchSize, setLargeMaxRows, setMaxFieldSize, setMaxRows, setPoolable, setQueryTimeout
- 
Method Details- 
registerOutParameterRegisters the OUT parameter in ordinal positionparameterIndexto the JDBC typesqlType. All OUT parameters must be registered before a stored procedure is executed.The JDBC type specified by sqlTypefor an OUT parameter determines the Java type that must be used in thegetmethod to read the value of that parameter.If the JDBC type expected to be returned to this output parameter is specific to this particular database, sqlTypeshould bejava.sql.Types.OTHER. The methodgetObject(int)retrieves the value.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- sqlType- the JDBC type code defined by- java.sql.Types. If the parameter is of JDBC type- NUMERICor- DECIMAL, the version of- registerOutParameterthat accepts a scale value should be used.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if- sqlTypeis a- ARRAY,- BLOB,- CLOB,- DATALINK,- JAVA_OBJECT,- NCHAR,- NCLOB,- NVARCHAR,- LONGNVARCHAR,- REF,- ROWID,- SQLXMLor- STRUCTdata type and the JDBC driver does not support this data type
- See Also:
- Types
 
- 
registerOutParameterRegisters the parameter in ordinal positionparameterIndexto be of JDBC typesqlType. All OUT parameters must be registered before a stored procedure is executed.The JDBC type specified by sqlTypefor an OUT parameter determines the Java type that must be used in thegetmethod to read the value of that parameter.This version of registerOutParametershould be used when the parameter is of JDBC typeNUMERICorDECIMAL.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- sqlType- the SQL type code defined by- java.sql.Types.
- scale- the desired number of digits to the right of the decimal point. It must be greater than or equal to zero.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if- sqlTypeis a- ARRAY,- BLOB,- CLOB,- DATALINK,- JAVA_OBJECT,- NCHAR,- NCLOB,- NVARCHAR,- LONGNVARCHAR,- REF,- ROWID,- SQLXMLor- STRUCTdata type and the JDBC driver does not support this data type
- See Also:
- Types
 
- 
wasNullRetrieves whether the last OUT parameter read had the value of SQLNULL. Note that this method should be called only after calling a getter method; otherwise, there is no value to use in determining whether it isnullor not.- Returns:
- trueif the last parameter read was SQL- NULL;- falseotherwise
- Throws:
- SQLException- if a database access error occurs or this method is called on a closed- CallableStatement
 
- 
getStringRetrieves the value of the designated JDBCCHAR,VARCHAR, orLONGVARCHARparameter as aStringin the Java programming language.For the fixed-length type JDBC CHAR, theStringobject returned has exactly the same value the SQLCHARvalue had in the database, including any padding added by the database.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- Returns:
- the parameter value. If the value is SQL NULL, the result isnull.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- See Also:
- setString(java.lang.String, java.lang.String)
 
- 
getBooleanRetrieves the value of the designated JDBCBITorBOOLEANparameter as abooleanin the Java programming language.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- Returns:
- the parameter value.  If the value is SQL NULL, the result isfalse.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- See Also:
- setBoolean(java.lang.String, boolean)
 
- 
getByteRetrieves the value of the designated JDBCTINYINTparameter as abytein the Java programming language.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- Returns:
- the parameter value.  If the value is SQL NULL, the result is0.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- See Also:
- setByte(java.lang.String, byte)
 
- 
getShortRetrieves the value of the designated JDBCSMALLINTparameter as ashortin the Java programming language.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- Returns:
- the parameter value.  If the value is SQL NULL, the result is0.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- See Also:
- setShort(java.lang.String, short)
 
- 
getIntRetrieves the value of the designated JDBCINTEGERparameter as anintin the Java programming language.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- Returns:
- the parameter value.  If the value is SQL NULL, the result is0.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- See Also:
- setInt(java.lang.String, int)
 
- 
getLongRetrieves the value of the designated JDBCBIGINTparameter as alongin the Java programming language.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- Returns:
- the parameter value.  If the value is SQL NULL, the result is0.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- See Also:
- setLong(java.lang.String, long)
 
- 
getFloatRetrieves the value of the designated JDBCFLOATparameter as afloatin the Java programming language.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- Returns:
- the parameter value.  If the value is SQL NULL, the result is0.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- See Also:
- setFloat(java.lang.String, float)
 
- 
getDoubleRetrieves the value of the designated JDBCDOUBLEparameter as adoublein the Java programming language.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- Returns:
- the parameter value.  If the value is SQL NULL, the result is0.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- See Also:
- setDouble(java.lang.String, double)
 
- 
getBigDecimal@Deprecated(since="1.2") BigDecimal getBigDecimal(int parameterIndex, int scale) throws SQLExceptionDeprecated.usegetBigDecimal(int parameterIndex)orgetBigDecimal(String parameterName)Retrieves the value of the designated JDBCNUMERICparameter as ajava.math.BigDecimalobject with scale digits to the right of the decimal point.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- scale- the number of digits to the right of the decimal point
- Returns:
- the parameter value.  If the value is SQL NULL, the result isnull.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- See Also:
- setBigDecimal(java.lang.String, java.math.BigDecimal)
 
- 
getBytesRetrieves the value of the designated JDBCBINARYorVARBINARYparameter as an array ofbytevalues in the Java programming language.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- Returns:
- the parameter value.  If the value is SQL NULL, the result isnull.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- See Also:
- setBytes(java.lang.String, byte[])
 
- 
getDateRetrieves the value of the designated JDBCDATEparameter as ajava.sql.Dateobject.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- Returns:
- the parameter value.  If the value is SQL NULL, the result isnull.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- See Also:
- setDate(java.lang.String, java.sql.Date)
 
- 
getTimeRetrieves the value of the designated JDBCTIMEparameter as ajava.sql.Timeobject.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- Returns:
- the parameter value.  If the value is SQL NULL, the result isnull.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- See Also:
- setTime(java.lang.String, java.sql.Time)
 
- 
getTimestampRetrieves the value of the designated JDBCTIMESTAMPparameter as ajava.sql.Timestampobject.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- Returns:
- the parameter value.  If the value is SQL NULL, the result isnull.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- See Also:
- setTimestamp(java.lang.String, java.sql.Timestamp)
 
- 
getObjectRetrieves the value of the designated parameter as anObjectin the Java programming language. If the value is an SQLNULL, the driver returns a Javanull.This method returns a Java object whose type corresponds to the JDBC type that was registered for this parameter using the method registerOutParameter. By registering the target JDBC type asjava.sql.Types.OTHER, this method can be used to read database-specific abstract data types.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- Returns:
- A java.lang.Objectholding the OUT parameter value
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- See Also:
- Types,- setObject(java.lang.String, java.lang.Object, int, int)
 
- 
getBigDecimalRetrieves the value of the designated JDBCNUMERICparameter as ajava.math.BigDecimalobject with as many digits to the right of the decimal point as the value contains.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- Returns:
- the parameter value in full precision.  If the value is
 SQL NULL, the result isnull.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- Since:
- 1.2
- See Also:
- setBigDecimal(java.lang.String, java.math.BigDecimal)
 
- 
getObjectReturns an object representing the value of OUT parameterparameterIndexand usesmapfor the custom mapping of the parameter value.This method returns a Java object whose type corresponds to the JDBC type that was registered for this parameter using the method registerOutParameter. By registering the target JDBC type asjava.sql.Types.OTHER, this method can be used to read database-specific abstract data types.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- map- the mapping from SQL type names to Java classes
- Returns:
- a java.lang.Objectholding the OUT parameter value
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.2
- See Also:
- setObject(java.lang.String, java.lang.Object, int, int)
 
- 
getRefRetrieves the value of the designated JDBCREF(<structured-type>)parameter as aRefobject in the Java programming language.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- Returns:
- the parameter value as a Refobject in the Java programming language. If the value was SQLNULL, the valuenullis returned.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.2
 
- 
getBlobRetrieves the value of the designated JDBCBLOBparameter as aBlobobject in the Java programming language.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- Returns:
- the parameter value as a Blobobject in the Java programming language. If the value was SQLNULL, the valuenullis returned.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.2
 
- 
getClobRetrieves the value of the designated JDBCCLOBparameter as ajava.sql.Clobobject in the Java programming language.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- Returns:
- the parameter value as a Clobobject in the Java programming language. If the value was SQLNULL, the valuenullis returned.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.2
 
- 
getArrayRetrieves the value of the designated JDBCARRAYparameter as anArrayobject in the Java programming language.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- Returns:
- the parameter value as an Arrayobject in the Java programming language. If the value was SQLNULL, the valuenullis returned.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.2
 
- 
getDateRetrieves the value of the designated JDBCDATEparameter as ajava.sql.Dateobject, using the givenCalendarobject to construct the date. With aCalendarobject, the driver can calculate the date taking into account a custom timezone and locale. If noCalendarobject is specified, the driver uses the default timezone and locale.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- cal- the- Calendarobject the driver will use to construct the date
- Returns:
- the parameter value.  If the value is SQL NULL, the result isnull.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- Since:
- 1.2
- See Also:
- setDate(java.lang.String, java.sql.Date)
 
- 
getTimeRetrieves the value of the designated JDBCTIMEparameter as ajava.sql.Timeobject, using the givenCalendarobject to construct the time. With aCalendarobject, the driver can calculate the time taking into account a custom timezone and locale. If noCalendarobject is specified, the driver uses the default timezone and locale.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- cal- the- Calendarobject the driver will use to construct the time
- Returns:
- the parameter value; if the value is SQL NULL, the result isnull.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- Since:
- 1.2
- See Also:
- setTime(java.lang.String, java.sql.Time)
 
- 
getTimestampRetrieves the value of the designated JDBCTIMESTAMPparameter as ajava.sql.Timestampobject, using the givenCalendarobject to construct theTimestampobject. With aCalendarobject, the driver can calculate the timestamp taking into account a custom timezone and locale. If noCalendarobject is specified, the driver uses the default timezone and locale.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- cal- the- Calendarobject the driver will use to construct the timestamp
- Returns:
- the parameter value.  If the value is SQL NULL, the result isnull.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- Since:
- 1.2
- See Also:
- setTimestamp(java.lang.String, java.sql.Timestamp)
 
- 
registerOutParameterRegisters the designated output parameter. This version of the methodregisterOutParametershould be used for a user-defined orREFoutput parameter. Examples of user-defined types include:STRUCT,DISTINCT,JAVA_OBJECT, and named array types.All OUT parameters must be registered before a stored procedure is executed. For a user-defined parameter, the fully-qualified SQL type name of the parameter should also be given, while a REFparameter requires that the fully-qualified type name of the referenced type be given. A JDBC driver that does not need the type code and type name information may ignore it. To be portable, however, applications should always provide these values for user-defined andREFparameters. Although it is intended for user-defined andREFparameters, this method may be used to register a parameter of any JDBC type. If the parameter does not have a user-defined orREFtype, the typeName parameter is ignored.Note: When reading the value of an out parameter, you must use the getter method whose Java type corresponds to the parameter's registered SQL type. - Parameters:
- parameterIndex- the first parameter is 1, the second is 2,...
- sqlType- a value from- Types
- typeName- the fully-qualified name of an SQL structured type
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if- sqlTypeis a- ARRAY,- BLOB,- CLOB,- DATALINK,- JAVA_OBJECT,- NCHAR,- NCLOB,- NVARCHAR,- LONGNVARCHAR,- REF,- ROWID,- SQLXMLor- STRUCTdata type and the JDBC driver does not support this data type
- Since:
- 1.2
- See Also:
- Types
 
- 
registerOutParameterRegisters the OUT parameter namedparameterNameto the JDBC typesqlType. All OUT parameters must be registered before a stored procedure is executed.The JDBC type specified by sqlTypefor an OUT parameter determines the Java type that must be used in thegetmethod to read the value of that parameter.If the JDBC type expected to be returned to this output parameter is specific to this particular database, sqlTypeshould bejava.sql.Types.OTHER. The methodgetObject(int)retrieves the value.- Parameters:
- parameterName- the name of the parameter
- sqlType- the JDBC type code defined by- java.sql.Types. If the parameter is of JDBC type- NUMERICor- DECIMAL, the version of- registerOutParameterthat accepts a scale value should be used.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if- sqlTypeis a- ARRAY,- BLOB,- CLOB,- DATALINK,- JAVA_OBJECT,- NCHAR,- NCLOB,- NVARCHAR,- LONGNVARCHAR,- REF,- ROWID,- SQLXMLor- STRUCTdata type and the JDBC driver does not support this data type or if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- Types
 
- 
registerOutParameterRegisters the parameter namedparameterNameto be of JDBC typesqlType. All OUT parameters must be registered before a stored procedure is executed.The JDBC type specified by sqlTypefor an OUT parameter determines the Java type that must be used in thegetmethod to read the value of that parameter.This version of registerOutParametershould be used when the parameter is of JDBC typeNUMERICorDECIMAL.- Parameters:
- parameterName- the name of the parameter
- sqlType- SQL type code defined by- java.sql.Types.
- scale- the desired number of digits to the right of the decimal point. It must be greater than or equal to zero.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if- sqlTypeis a- ARRAY,- BLOB,- CLOB,- DATALINK,- JAVA_OBJECT,- NCHAR,- NCLOB,- NVARCHAR,- LONGNVARCHAR,- REF,- ROWID,- SQLXMLor- STRUCTdata type and the JDBC driver does not support this data type or if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- Types
 
- 
registerOutParameterRegisters the designated output parameter. This version of the methodregisterOutParametershould be used for a user-named or REF output parameter. Examples of user-named types include: STRUCT, DISTINCT, JAVA_OBJECT, and named array types.All OUT parameters must be registered before a stored procedure is executed. For a user-named parameter the fully-qualified SQL type name of the parameter should also be given, while a REF parameter requires that the fully-qualified type name of the referenced type be given. A JDBC driver that does not need the type code and type name information may ignore it. To be portable, however, applications should always provide these values for user-named and REF parameters. Although it is intended for user-named and REF parameters, this method may be used to register a parameter of any JDBC type. If the parameter does not have a user-named or REF type, the typeName parameter is ignored. Note: When reading the value of an out parameter, you must use the getXXXmethod whose Java type XXX corresponds to the parameter's registered SQL type.- Parameters:
- parameterName- the name of the parameter
- sqlType- a value from- Types
- typeName- the fully-qualified name of an SQL structured type
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if- sqlTypeis a- ARRAY,- BLOB,- CLOB,- DATALINK,- JAVA_OBJECT,- NCHAR,- NCLOB,- NVARCHAR,- LONGNVARCHAR,- REF,- ROWID,- SQLXMLor- STRUCTdata type and the JDBC driver does not support this data type or if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- Types
 
- 
getURLRetrieves the value of the designated JDBCDATALINKparameter as ajava.net.URLobject.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2,...
- Returns:
- a java.net.URLobject that represents the JDBCDATALINKvalue used as the designated parameter
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs, this method is called on a closed- CallableStatement, or if the URL being returned is not a valid URL on the Java platform
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- setURL(java.lang.String, java.net.URL)
 
- 
setURLSets the designated parameter to the givenjava.net.URLobject. The driver converts this to an SQLDATALINKvalue when it sends it to the database.- Parameters:
- parameterName- the name of the parameter
- val- the parameter value
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs; this method is called on a closed- CallableStatementor if a URL is malformed
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- getURL(int)
 
- 
setNullSets the designated parameter to SQLNULL.Note: You must specify the parameter's SQL type. - Parameters:
- parameterName- the name of the parameter
- sqlType- the SQL type code defined in- java.sql.Types
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
 
- 
setBooleanSets the designated parameter to the given Javabooleanvalue. The driver converts this to an SQLBITorBOOLEANvalue when it sends it to the database.- Parameters:
- parameterName- the name of the parameter
- x- the parameter value
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- getBoolean(int)
 
- 
setByteSets the designated parameter to the given Javabytevalue. The driver converts this to an SQLTINYINTvalue when it sends it to the database.- Parameters:
- parameterName- the name of the parameter
- x- the parameter value
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- getByte(int)
 
- 
setShortSets the designated parameter to the given Javashortvalue. The driver converts this to an SQLSMALLINTvalue when it sends it to the database.- Parameters:
- parameterName- the name of the parameter
- x- the parameter value
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- getShort(int)
 
- 
setIntSets the designated parameter to the given Javaintvalue. The driver converts this to an SQLINTEGERvalue when it sends it to the database.- Parameters:
- parameterName- the name of the parameter
- x- the parameter value
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- getInt(int)
 
- 
setLongSets the designated parameter to the given Javalongvalue. The driver converts this to an SQLBIGINTvalue when it sends it to the database.- Parameters:
- parameterName- the name of the parameter
- x- the parameter value
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- getLong(int)
 
- 
setFloatSets the designated parameter to the given Javafloatvalue. The driver converts this to an SQLFLOATvalue when it sends it to the database.- Parameters:
- parameterName- the name of the parameter
- x- the parameter value
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- getFloat(int)
 
- 
setDoubleSets the designated parameter to the given Javadoublevalue. The driver converts this to an SQLDOUBLEvalue when it sends it to the database.- Parameters:
- parameterName- the name of the parameter
- x- the parameter value
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- getDouble(int)
 
- 
setBigDecimalSets the designated parameter to the givenjava.math.BigDecimalvalue. The driver converts this to an SQLNUMERICvalue when it sends it to the database.- Parameters:
- parameterName- the name of the parameter
- x- the parameter value
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- getBigDecimal(int, int)
 
- 
setStringSets the designated parameter to the given JavaStringvalue. The driver converts this to an SQLVARCHARorLONGVARCHARvalue (depending on the argument's size relative to the driver's limits onVARCHARvalues) when it sends it to the database.- Parameters:
- parameterName- the name of the parameter
- x- the parameter value
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- getString(int)
 
- 
setBytesSets the designated parameter to the given Java array of bytes. The driver converts this to an SQLVARBINARYorLONGVARBINARY(depending on the argument's size relative to the driver's limits onVARBINARYvalues) when it sends it to the database.- Parameters:
- parameterName- the name of the parameter
- x- the parameter value
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- getBytes(int)
 
- 
setDateSets the designated parameter to the givenjava.sql.Datevalue using the default time zone of the virtual machine that is running the application. The driver converts this to an SQLDATEvalue when it sends it to the database.- Parameters:
- parameterName- the name of the parameter
- x- the parameter value
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- getDate(int)
 
- 
setTimeSets the designated parameter to the givenjava.sql.Timevalue. The driver converts this to an SQLTIMEvalue when it sends it to the database.- Parameters:
- parameterName- the name of the parameter
- x- the parameter value
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- getTime(int)
 
- 
setTimestampSets the designated parameter to the givenjava.sql.Timestampvalue. The driver converts this to an SQLTIMESTAMPvalue when it sends it to the database.- Parameters:
- parameterName- the name of the parameter
- x- the parameter value
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- getTimestamp(int)
 
- 
setAsciiStreamSets the designated parameter to the given input stream, which will have the specified number of bytes. When a very large ASCII value is input to aLONGVARCHARparameter, it may be more practical to send it via ajava.io.InputStream. Data will be read from the stream as needed until end-of-file is reached. The JDBC driver will do any necessary conversion from ASCII to the database char format.Note: This stream object can either be a standard Java stream object or your own subclass that implements the standard interface. - Parameters:
- parameterName- the name of the parameter
- x- the Java input stream that contains the ASCII parameter value
- length- the number of bytes in the stream
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
 
- 
setBinaryStreamSets the designated parameter to the given input stream, which will have the specified number of bytes. When a very large binary value is input to aLONGVARBINARYparameter, it may be more practical to send it via ajava.io.InputStreamobject. The data will be read from the stream as needed until end-of-file is reached.Note: This stream object can either be a standard Java stream object or your own subclass that implements the standard interface. - Parameters:
- parameterName- the name of the parameter
- x- the java input stream which contains the binary parameter value
- length- the number of bytes in the stream
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
 
- 
setObjectSets the value of the designated parameter with the given object.The given Java object will be converted to the given targetSqlType before being sent to the database. If the object has a custom mapping (is of a class implementing the interface SQLData), the JDBC driver should call the methodSQLData.writeSQLto write it to the SQL data stream. If, on the other hand, the object is of a class implementingRef,Blob,Clob,NClob,Struct,java.net.URL, orArray, the driver should pass it to the database as a value of the corresponding SQL type.Note that this method may be used to pass datatabase- specific abstract data types. - Parameters:
- parameterName- the name of the parameter
- x- the object containing the input parameter value
- targetSqlType- the SQL type (as defined in java.sql.Types) to be sent to the database. The scale argument may further qualify this type.
- scale- for java.sql.Types.DECIMAL or java.sql.Types.NUMERIC types, this is the number of digits after the decimal point. For all other types, this value will be ignored.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support the specified targetSqlType
- Since:
- 1.4
- See Also:
- Types,- getObject(int)
 
- 
setObjectSets the value of the designated parameter with the given object. This method is similar tosetObject(String parameterName, Object x, int targetSqlType, int scaleOrLength), except that it assumes a scale of zero.- Parameters:
- parameterName- the name of the parameter
- x- the object containing the input parameter value
- targetSqlType- the SQL type (as defined in java.sql.Types) to be sent to the database
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support the specified targetSqlType
- Since:
- 1.4
- See Also:
- getObject(int)
 
- 
setObjectSets the value of the designated parameter with the given object.The JDBC specification specifies a standard mapping from Java Objecttypes to SQL types. The given argument will be converted to the corresponding SQL type before being sent to the database.Note that this method may be used to pass database- specific abstract data types, by using a driver-specific Java type. If the object is of a class implementing the interface SQLData, the JDBC driver should call the methodSQLData.writeSQLto write it to the SQL data stream. If, on the other hand, the object is of a class implementingRef,Blob,Clob,NClob,Struct,java.net.URL, orArray, the driver should pass it to the database as a value of the corresponding SQL type.This method throws an exception if there is an ambiguity, for example, if the object is of a class implementing more than one of the interfaces named above. Note: Not all databases allow for a non-typed Null to be sent to the backend. For maximum portability, the setNullor thesetObject(String parameterName, Object x, int sqlType)method should be used instead ofsetObject(String parameterName, Object x).- Parameters:
- parameterName- the name of the parameter
- x- the object containing the input parameter value
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs, this method is called on a closed- CallableStatementor if the given- Objectparameter is ambiguous
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- getObject(int)
 
- 
setCharacterStreamSets the designated parameter to the givenReaderobject, which is the given number of characters long. When a very large UNICODE value is input to aLONGVARCHARparameter, it may be more practical to send it via ajava.io.Readerobject. The data will be read from the stream as needed until end-of-file is reached. The JDBC driver will do any necessary conversion from UNICODE to the database char format.Note: This stream object can either be a standard Java stream object or your own subclass that implements the standard interface. - Parameters:
- parameterName- the name of the parameter
- reader- the- java.io.Readerobject that contains the UNICODE data used as the designated parameter
- length- the number of characters in the stream
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
 
- 
setDateSets the designated parameter to the givenjava.sql.Datevalue, using the givenCalendarobject. The driver uses theCalendarobject to construct an SQLDATEvalue, which the driver then sends to the database. With a aCalendarobject, the driver can calculate the date taking into account a custom timezone. If noCalendarobject is specified, the driver uses the default timezone, which is that of the virtual machine running the application.- Parameters:
- parameterName- the name of the parameter
- x- the parameter value
- cal- the- Calendarobject the driver will use to construct the date
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- getDate(int)
 
- 
setTimeSets the designated parameter to the givenjava.sql.Timevalue, using the givenCalendarobject. The driver uses theCalendarobject to construct an SQLTIMEvalue, which the driver then sends to the database. With a aCalendarobject, the driver can calculate the time taking into account a custom timezone. If noCalendarobject is specified, the driver uses the default timezone, which is that of the virtual machine running the application.- Parameters:
- parameterName- the name of the parameter
- x- the parameter value
- cal- the- Calendarobject the driver will use to construct the time
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- getTime(int)
 
- 
setTimestampSets the designated parameter to the givenjava.sql.Timestampvalue, using the givenCalendarobject. The driver uses theCalendarobject to construct an SQLTIMESTAMPvalue, which the driver then sends to the database. With a aCalendarobject, the driver can calculate the timestamp taking into account a custom timezone. If noCalendarobject is specified, the driver uses the default timezone, which is that of the virtual machine running the application.- Parameters:
- parameterName- the name of the parameter
- x- the parameter value
- cal- the- Calendarobject the driver will use to construct the timestamp
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- getTimestamp(int)
 
- 
setNullSets the designated parameter to SQLNULL. This version of the methodsetNullshould be used for user-defined types and REF type parameters. Examples of user-defined types include: STRUCT, DISTINCT, JAVA_OBJECT, and named array types.Note: To be portable, applications must give the SQL type code and the fully-qualified SQL type name when specifying a NULL user-defined or REF parameter. In the case of a user-defined type the name is the type name of the parameter itself. For a REF parameter, the name is the type name of the referenced type. Although it is intended for user-defined and Ref parameters, this method may be used to set a null parameter of any JDBC type. If the parameter does not have a user-defined or REF type, the given typeName is ignored. - Parameters:
- parameterName- the name of the parameter
- sqlType- a value from- java.sql.Types
- typeName- the fully-qualified name of an SQL user-defined type; ignored if the parameter is not a user-defined type or SQL- REFvalue
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
 
- 
getStringRetrieves the value of a JDBCCHAR,VARCHAR, orLONGVARCHARparameter as aStringin the Java programming language.For the fixed-length type JDBC CHAR, theStringobject returned has exactly the same value the SQLCHARvalue had in the database, including any padding added by the database.- Parameters:
- parameterName- the name of the parameter
- Returns:
- the parameter value. If the value is SQL NULL, the result isnull.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- setString(java.lang.String, java.lang.String)
 
- 
getBooleanRetrieves the value of a JDBCBITorBOOLEANparameter as abooleanin the Java programming language.- Parameters:
- parameterName- the name of the parameter
- Returns:
- the parameter value.  If the value is SQL NULL, the result isfalse.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- setBoolean(java.lang.String, boolean)
 
- 
getByteRetrieves the value of a JDBCTINYINTparameter as abytein the Java programming language.- Parameters:
- parameterName- the name of the parameter
- Returns:
- the parameter value.  If the value is SQL NULL, the result is0.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- setByte(java.lang.String, byte)
 
- 
getShortRetrieves the value of a JDBCSMALLINTparameter as ashortin the Java programming language.- Parameters:
- parameterName- the name of the parameter
- Returns:
- the parameter value.  If the value is SQL NULL, the result is0.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- setShort(java.lang.String, short)
 
- 
getIntRetrieves the value of a JDBCINTEGERparameter as anintin the Java programming language.- Parameters:
- parameterName- the name of the parameter
- Returns:
- the parameter value.  If the value is SQL NULL, the result is0.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- setInt(java.lang.String, int)
 
- 
getLongRetrieves the value of a JDBCBIGINTparameter as alongin the Java programming language.- Parameters:
- parameterName- the name of the parameter
- Returns:
- the parameter value.  If the value is SQL NULL, the result is0.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- setLong(java.lang.String, long)
 
- 
getFloatRetrieves the value of a JDBCFLOATparameter as afloatin the Java programming language.- Parameters:
- parameterName- the name of the parameter
- Returns:
- the parameter value.  If the value is SQL NULL, the result is0.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- setFloat(java.lang.String, float)
 
- 
getDoubleRetrieves the value of a JDBCDOUBLEparameter as adoublein the Java programming language.- Parameters:
- parameterName- the name of the parameter
- Returns:
- the parameter value.  If the value is SQL NULL, the result is0.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- setDouble(java.lang.String, double)
 
- 
getBytesRetrieves the value of a JDBCBINARYorVARBINARYparameter as an array ofbytevalues in the Java programming language.- Parameters:
- parameterName- the name of the parameter
- Returns:
- the parameter value.  If the value is SQL NULL, the result isnull.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- setBytes(java.lang.String, byte[])
 
- 
getDateRetrieves the value of a JDBCDATEparameter as ajava.sql.Dateobject.- Parameters:
- parameterName- the name of the parameter
- Returns:
- the parameter value.  If the value is SQL NULL, the result isnull.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- setDate(java.lang.String, java.sql.Date)
 
- 
getTimeRetrieves the value of a JDBCTIMEparameter as ajava.sql.Timeobject.- Parameters:
- parameterName- the name of the parameter
- Returns:
- the parameter value.  If the value is SQL NULL, the result isnull.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- setTime(java.lang.String, java.sql.Time)
 
- 
getTimestampRetrieves the value of a JDBCTIMESTAMPparameter as ajava.sql.Timestampobject.- Parameters:
- parameterName- the name of the parameter
- Returns:
- the parameter value.  If the value is SQL NULL, the result isnull.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- setTimestamp(java.lang.String, java.sql.Timestamp)
 
- 
getObjectRetrieves the value of a parameter as anObjectin the Java programming language. If the value is an SQLNULL, the driver returns a Javanull.This method returns a Java object whose type corresponds to the JDBC type that was registered for this parameter using the method registerOutParameter. By registering the target JDBC type asjava.sql.Types.OTHER, this method can be used to read database-specific abstract data types.- Parameters:
- parameterName- the name of the parameter
- Returns:
- A java.lang.Objectholding the OUT parameter value.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- Types,- setObject(java.lang.String, java.lang.Object, int, int)
 
- 
getBigDecimalRetrieves the value of a JDBCNUMERICparameter as ajava.math.BigDecimalobject with as many digits to the right of the decimal point as the value contains.- Parameters:
- parameterName- the name of the parameter
- Returns:
- the parameter value in full precision.  If the value is
 SQL NULL, the result isnull.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- setBigDecimal(java.lang.String, java.math.BigDecimal)
 
- 
getObjectReturns an object representing the value of OUT parameterparameterNameand usesmapfor the custom mapping of the parameter value.This method returns a Java object whose type corresponds to the JDBC type that was registered for this parameter using the method registerOutParameter. By registering the target JDBC type asjava.sql.Types.OTHER, this method can be used to read database-specific abstract data types.- Parameters:
- parameterName- the name of the parameter
- map- the mapping from SQL type names to Java classes
- Returns:
- a java.lang.Objectholding the OUT parameter value
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- setObject(java.lang.String, java.lang.Object, int, int)
 
- 
getRefRetrieves the value of a JDBCREF(<structured-type>)parameter as aRefobject in the Java programming language.- Parameters:
- parameterName- the name of the parameter
- Returns:
- the parameter value as a Refobject in the Java programming language. If the value was SQLNULL, the valuenullis returned.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
 
- 
getBlobRetrieves the value of a JDBCBLOBparameter as aBlobobject in the Java programming language.- Parameters:
- parameterName- the name of the parameter
- Returns:
- the parameter value as a Blobobject in the Java programming language. If the value was SQLNULL, the valuenullis returned.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
 
- 
getClobRetrieves the value of a JDBCCLOBparameter as ajava.sql.Clobobject in the Java programming language.- Parameters:
- parameterName- the name of the parameter
- Returns:
- the parameter value as a Clobobject in the Java programming language. If the value was SQLNULL, the valuenullis returned.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
 
- 
getArrayRetrieves the value of a JDBCARRAYparameter as anArrayobject in the Java programming language.- Parameters:
- parameterName- the name of the parameter
- Returns:
- the parameter value as an Arrayobject in Java programming language. If the value was SQLNULL, the valuenullis returned.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
 
- 
getDateRetrieves the value of a JDBCDATEparameter as ajava.sql.Dateobject, using the givenCalendarobject to construct the date. With aCalendarobject, the driver can calculate the date taking into account a custom timezone and locale. If noCalendarobject is specified, the driver uses the default timezone and locale.- Parameters:
- parameterName- the name of the parameter
- cal- the- Calendarobject the driver will use to construct the date
- Returns:
- the parameter value.  If the value is SQL NULL, the result isnull.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- setDate(java.lang.String, java.sql.Date)
 
- 
getTimeRetrieves the value of a JDBCTIMEparameter as ajava.sql.Timeobject, using the givenCalendarobject to construct the time. With aCalendarobject, the driver can calculate the time taking into account a custom timezone and locale. If noCalendarobject is specified, the driver uses the default timezone and locale.- Parameters:
- parameterName- the name of the parameter
- cal- the- Calendarobject the driver will use to construct the time
- Returns:
- the parameter value; if the value is SQL NULL, the result isnull.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- setTime(java.lang.String, java.sql.Time)
 
- 
getTimestampRetrieves the value of a JDBCTIMESTAMPparameter as ajava.sql.Timestampobject, using the givenCalendarobject to construct theTimestampobject. With aCalendarobject, the driver can calculate the timestamp taking into account a custom timezone and locale. If noCalendarobject is specified, the driver uses the default timezone and locale.- Parameters:
- parameterName- the name of the parameter
- cal- the- Calendarobject the driver will use to construct the timestamp
- Returns:
- the parameter value.  If the value is SQL NULL, the result isnull.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- setTimestamp(java.lang.String, java.sql.Timestamp)
 
- 
getURLRetrieves the value of a JDBCDATALINKparameter as ajava.net.URLobject.- Parameters:
- parameterName- the name of the parameter
- Returns:
- the parameter value as a java.net.URLobject in the Java programming language. If the value was SQLNULL, the valuenullis returned.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs, this method is called on a closed- CallableStatement, or if there is a problem with the URL
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.4
- See Also:
- setURL(java.lang.String, java.net.URL)
 
- 
getRowIdRetrieves the value of the designated JDBCROWIDparameter as ajava.sql.RowIdobject.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2,...
- Returns:
- a RowIdobject that represents the JDBCROWIDvalue is used as the designated parameter. If the parameter contains a SQLNULL, then anullvalue is returned.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
getRowIdRetrieves the value of the designated JDBCROWIDparameter as ajava.sql.RowIdobject.- Parameters:
- parameterName- the name of the parameter
- Returns:
- a RowIdobject that represents the JDBCROWIDvalue is used as the designated parameter. If the parameter contains a SQLNULL, then anullvalue is returned.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
setRowIdSets the designated parameter to the givenjava.sql.RowIdobject. The driver converts this to a SQLROWIDwhen it sends it to the database.- Parameters:
- parameterName- the name of the parameter
- x- the parameter value
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
setNStringSets the designated parameter to the givenStringobject. The driver converts this to a SQLNCHARorNVARCHARorLONGNVARCHAR- Parameters:
- parameterName- the name of the parameter to be set
- value- the parameter value
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if the driver does not support national character sets; if the driver can detect that a data conversion error could occur; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
setNCharacterStreamSets the designated parameter to aReaderobject. TheReaderreads the data till end-of-file is reached. The driver does the necessary conversion from Java character format to the national character set in the database.- Parameters:
- parameterName- the name of the parameter to be set
- value- the parameter value
- length- the number of characters in the parameter data.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if the driver does not support national character sets; if the driver can detect that a data conversion error could occur; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
setNClobSets the designated parameter to ajava.sql.NClobobject. The object implements thejava.sql.NClobinterface. ThisNClobobject maps to a SQLNCLOB.- Parameters:
- parameterName- the name of the parameter to be set
- value- the parameter value
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if the driver does not support national character sets; if the driver can detect that a data conversion error could occur; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
setClobSets the designated parameter to aReaderobject. Thereadermust contain the number of characters specified by length otherwise aSQLExceptionwill be generated when theCallableStatementis executed. This method differs from thesetCharacterStream (int, Reader, int)method because it informs the driver that the parameter value should be sent to the server as aCLOB. When thesetCharacterStreammethod is used, the driver may have to do extra work to determine whether the parameter data should be send to the server as aLONGVARCHARor aCLOB- Parameters:
- parameterName- the name of the parameter to be set
- reader- An object that contains the data to set the parameter value to.
- length- the number of characters in the parameter data.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if the length specified is less than zero; a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
setBlobSets the designated parameter to anInputStreamobject. TheInputstreammust contain the number of characters specified by length, otherwise aSQLExceptionwill be generated when theCallableStatementis executed. This method differs from thesetBinaryStream (int, InputStream, int)method because it informs the driver that the parameter value should be sent to the server as aBLOB. When thesetBinaryStreammethod is used, the driver may have to do extra work to determine whether the parameter data should be sent to the server as aLONGVARBINARYor aBLOB- Parameters:
- parameterName- the name of the parameter to be set the second is 2, ...
- inputStream- An object that contains the data to set the parameter value to.
- length- the number of bytes in the parameter data.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if the length specified is less than zero; if the number of bytes in the- InputStreamdoes not match the specified length; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
setNClobSets the designated parameter to aReaderobject. Thereadermust contain the number of characters specified by length otherwise aSQLExceptionwill be generated when theCallableStatementis executed. This method differs from thesetCharacterStream (int, Reader, int)method because it informs the driver that the parameter value should be sent to the server as aNCLOB. When thesetCharacterStreammethod is used, the driver may have to do extra work to determine whether the parameter data should be send to the server as aLONGNVARCHARor aNCLOB- Parameters:
- parameterName- the name of the parameter to be set
- reader- An object that contains the data to set the parameter value to.
- length- the number of characters in the parameter data.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if the length specified is less than zero; if the driver does not support national character sets; if the driver can detect that a data conversion error could occur; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
getNClobRetrieves the value of the designated JDBCNCLOBparameter as ajava.sql.NClobobject in the Java programming language.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- Returns:
- the parameter value as a NClobobject in the Java programming language. If the value was SQLNULL, the valuenullis returned.
- Throws:
- SQLException- if the parameterIndex is not valid; if the driver does not support national character sets; if the driver can detect that a data conversion error could occur; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
getNClobRetrieves the value of a JDBCNCLOBparameter as ajava.sql.NClobobject in the Java programming language.- Parameters:
- parameterName- the name of the parameter
- Returns:
- the parameter value as a NClobobject in the Java programming language. If the value was SQLNULL, the valuenullis returned.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if the driver does not support national character sets; if the driver can detect that a data conversion error could occur; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
setSQLXMLSets the designated parameter to the givenjava.sql.SQLXMLobject. The driver converts this to anSQL XMLvalue when it sends it to the database.- Parameters:
- parameterName- the name of the parameter
- xmlObject- a- SQLXMLobject that maps an- SQL XMLvalue
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs; this method is called on a closed- CallableStatementor the- java.xml.transform.Result,- Writeror- OutputStreamhas not been closed for the- SQLXMLobject
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
getSQLXMLRetrieves the value of the designatedSQL XMLparameter as ajava.sql.SQLXMLobject in the Java programming language.- Parameters:
- parameterIndex- index of the first parameter is 1, the second is 2, ...
- Returns:
- a SQLXMLobject that maps anSQL XMLvalue
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
getSQLXMLRetrieves the value of the designatedSQL XMLparameter as ajava.sql.SQLXMLobject in the Java programming language.- Parameters:
- parameterName- the name of the parameter
- Returns:
- a SQLXMLobject that maps anSQL XMLvalue
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
getNStringRetrieves the value of the designatedNCHAR,NVARCHARorLONGNVARCHARparameter as aStringin the Java programming language.For the fixed-length type JDBC NCHAR, theStringobject returned has exactly the same value the SQLNCHARvalue had in the database, including any padding added by the database.- Parameters:
- parameterIndex- index of the first parameter is 1, the second is 2, ...
- Returns:
- a Stringobject that maps anNCHAR,NVARCHARorLONGNVARCHARvalue
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
- See Also:
- setNString(java.lang.String, java.lang.String)
 
- 
getNStringRetrieves the value of the designatedNCHAR,NVARCHARorLONGNVARCHARparameter as aStringin the Java programming language.For the fixed-length type JDBC NCHAR, theStringobject returned has exactly the same value the SQLNCHARvalue had in the database, including any padding added by the database.- Parameters:
- parameterName- the name of the parameter
- Returns:
- a Stringobject that maps anNCHAR,NVARCHARorLONGNVARCHARvalue
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
- See Also:
- setNString(java.lang.String, java.lang.String)
 
- 
getNCharacterStreamRetrieves the value of the designated parameter as ajava.io.Readerobject in the Java programming language. It is intended for use when accessingNCHAR,NVARCHARandLONGNVARCHARparameters.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, ...
- Returns:
- a java.io.Readerobject that contains the parameter value; if the value is SQLNULL, the value returned isnullin the Java programming language.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
getNCharacterStreamRetrieves the value of the designated parameter as ajava.io.Readerobject in the Java programming language. It is intended for use when accessingNCHAR,NVARCHARandLONGNVARCHARparameters.- Parameters:
- parameterName- the name of the parameter
- Returns:
- a java.io.Readerobject that contains the parameter value; if the value is SQLNULL, the value returned isnullin the Java programming language
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
getCharacterStreamRetrieves the value of the designated parameter as ajava.io.Readerobject in the Java programming language.- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, ...
- Returns:
- a java.io.Readerobject that contains the parameter value; if the value is SQLNULL, the value returned isnullin the Java programming language.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- Since:
- 1.6
 
- 
getCharacterStreamRetrieves the value of the designated parameter as ajava.io.Readerobject in the Java programming language.- Parameters:
- parameterName- the name of the parameter
- Returns:
- a java.io.Readerobject that contains the parameter value; if the value is SQLNULL, the value returned isnullin the Java programming language
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
setBlobSets the designated parameter to the givenjava.sql.Blobobject. The driver converts this to an SQLBLOBvalue when it sends it to the database.- Parameters:
- parameterName- the name of the parameter
- x- a- Blobobject that maps an SQL- BLOBvalue
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
setClobSets the designated parameter to the givenjava.sql.Clobobject. The driver converts this to an SQLCLOBvalue when it sends it to the database.- Parameters:
- parameterName- the name of the parameter
- x- a- Clobobject that maps an SQL- CLOBvalue
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
setAsciiStreamSets the designated parameter to the given input stream, which will have the specified number of bytes. When a very large ASCII value is input to aLONGVARCHARparameter, it may be more practical to send it via ajava.io.InputStream. Data will be read from the stream as needed until end-of-file is reached. The JDBC driver will do any necessary conversion from ASCII to the database char format.Note: This stream object can either be a standard Java stream object or your own subclass that implements the standard interface. - Parameters:
- parameterName- the name of the parameter
- x- the Java input stream that contains the ASCII parameter value
- length- the number of bytes in the stream
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
setBinaryStreamSets the designated parameter to the given input stream, which will have the specified number of bytes. When a very large binary value is input to aLONGVARBINARYparameter, it may be more practical to send it via ajava.io.InputStreamobject. The data will be read from the stream as needed until end-of-file is reached.Note: This stream object can either be a standard Java stream object or your own subclass that implements the standard interface. - Parameters:
- parameterName- the name of the parameter
- x- the java input stream which contains the binary parameter value
- length- the number of bytes in the stream
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
setCharacterStreamSets the designated parameter to the givenReaderobject, which is the given number of characters long. When a very large UNICODE value is input to aLONGVARCHARparameter, it may be more practical to send it via ajava.io.Readerobject. The data will be read from the stream as needed until end-of-file is reached. The JDBC driver will do any necessary conversion from UNICODE to the database char format.Note: This stream object can either be a standard Java stream object or your own subclass that implements the standard interface. - Parameters:
- parameterName- the name of the parameter
- reader- the- java.io.Readerobject that contains the UNICODE data used as the designated parameter
- length- the number of characters in the stream
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
setAsciiStreamSets the designated parameter to the given input stream. When a very large ASCII value is input to aLONGVARCHARparameter, it may be more practical to send it via ajava.io.InputStream. Data will be read from the stream as needed until end-of-file is reached. The JDBC driver will do any necessary conversion from ASCII to the database char format.Note: This stream object can either be a standard Java stream object or your own subclass that implements the standard interface. Note: Consult your JDBC driver documentation to determine if it might be more efficient to use a version of setAsciiStreamwhich takes a length parameter.- Parameters:
- parameterName- the name of the parameter
- x- the Java input stream that contains the ASCII parameter value
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
setBinaryStreamSets the designated parameter to the given input stream. When a very large binary value is input to aLONGVARBINARYparameter, it may be more practical to send it via ajava.io.InputStreamobject. The data will be read from the stream as needed until end-of-file is reached.Note: This stream object can either be a standard Java stream object or your own subclass that implements the standard interface. Note: Consult your JDBC driver documentation to determine if it might be more efficient to use a version of setBinaryStreamwhich takes a length parameter.- Parameters:
- parameterName- the name of the parameter
- x- the java input stream which contains the binary parameter value
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
setCharacterStreamSets the designated parameter to the givenReaderobject. When a very large UNICODE value is input to aLONGVARCHARparameter, it may be more practical to send it via ajava.io.Readerobject. The data will be read from the stream as needed until end-of-file is reached. The JDBC driver will do any necessary conversion from UNICODE to the database char format.Note: This stream object can either be a standard Java stream object or your own subclass that implements the standard interface. Note: Consult your JDBC driver documentation to determine if it might be more efficient to use a version of setCharacterStreamwhich takes a length parameter.- Parameters:
- parameterName- the name of the parameter
- reader- the- java.io.Readerobject that contains the Unicode data
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
setNCharacterStreamSets the designated parameter to aReaderobject. TheReaderreads the data till end-of-file is reached. The driver does the necessary conversion from Java character format to the national character set in the database.Note: This stream object can either be a standard Java stream object or your own subclass that implements the standard interface. Note: Consult your JDBC driver documentation to determine if it might be more efficient to use a version of setNCharacterStreamwhich takes a length parameter.- Parameters:
- parameterName- the name of the parameter
- value- the parameter value
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if the driver does not support national character sets; if the driver can detect that a data conversion error could occur; if a database access error occurs; or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
setClobSets the designated parameter to aReaderobject. This method differs from thesetCharacterStream (int, Reader)method because it informs the driver that the parameter value should be sent to the server as aCLOB. When thesetCharacterStreammethod is used, the driver may have to do extra work to determine whether the parameter data should be send to the server as aLONGVARCHARor aCLOBNote: Consult your JDBC driver documentation to determine if it might be more efficient to use a version of setClobwhich takes a length parameter.- Parameters:
- parameterName- the name of the parameter
- reader- An object that contains the data to set the parameter value to.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
setBlobSets the designated parameter to anInputStreamobject. This method differs from thesetBinaryStream (int, InputStream)method because it informs the driver that the parameter value should be sent to the server as aBLOB. When thesetBinaryStreammethod is used, the driver may have to do extra work to determine whether the parameter data should be send to the server as aLONGVARBINARYor aBLOBNote: Consult your JDBC driver documentation to determine if it might be more efficient to use a version of setBlobwhich takes a length parameter.- Parameters:
- parameterName- the name of the parameter
- inputStream- An object that contains the data to set the parameter value to.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
setNClobSets the designated parameter to aReaderobject. This method differs from thesetCharacterStream (int, Reader)method because it informs the driver that the parameter value should be sent to the server as aNCLOB. When thesetCharacterStreammethod is used, the driver may have to do extra work to determine whether the parameter data should be send to the server as aLONGNVARCHARor aNCLOBNote: Consult your JDBC driver documentation to determine if it might be more efficient to use a version of setNClobwhich takes a length parameter.- Parameters:
- parameterName- the name of the parameter
- reader- An object that contains the data to set the parameter value to.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if the driver does not support national character sets; if the driver can detect that a data conversion error could occur; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.6
 
- 
getObjectReturns an object representing the value of OUT parameterparameterIndexand will convert from the SQL type of the parameter to the requested Java data type, if the conversion is supported. If the conversion is not supported or null is specified for the type, aSQLExceptionis thrown.At a minimum, an implementation must support the conversions defined in Appendix B, Table B-3 and conversion of appropriate user defined SQL types to a Java type which implements SQLData, orStruct. Additional conversions may be supported and are vendor defined.- Type Parameters:
- T- the type of the class modeled by this Class object
- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- type- Class representing the Java data type to convert the designated parameter to.
- Returns:
- an instance of typeholding the OUT parameter value
- Throws:
- SQLException- if conversion is not supported, type is null or another error occurs. The getCause() method of the exception may provide a more detailed exception, for example, if a conversion error occurs
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.7
 
- 
getObjectReturns an object representing the value of OUT parameterparameterNameand will convert from the SQL type of the parameter to the requested Java data type, if the conversion is supported. If the conversion is not supported or null is specified for the type, aSQLExceptionis thrown.At a minimum, an implementation must support the conversions defined in Appendix B, Table B-3 and conversion of appropriate user defined SQL types to a Java type which implements SQLData, orStruct. Additional conversions may be supported and are vendor defined.- Type Parameters:
- T- the type of the class modeled by this Class object
- Parameters:
- parameterName- the name of the parameter
- type- Class representing the Java data type to convert the designated parameter to.
- Returns:
- an instance of typeholding the OUT parameter value
- Throws:
- SQLException- if conversion is not supported, type is null or another error occurs. The getCause() method of the exception may provide a more detailed exception, for example, if a conversion error occurs
- SQLFeatureNotSupportedException- if the JDBC driver does not support this method
- Since:
- 1.7
 
- 
setObjectdefault void setObject(String parameterName, Object x, SQLType targetSqlType, int scaleOrLength) throws SQLExceptionSets the value of the designated parameter with the given object. If the second argument is anInputStreamthen the stream must contain the number of bytes specified by scaleOrLength. If the second argument is aReaderthen the reader must contain the number of characters specified by scaleOrLength. If these conditions are not true the driver will generate aSQLExceptionwhen the prepared statement is executed.The given Java object will be converted to the given targetSqlType before being sent to the database. If the object has a custom mapping (is of a class implementing the interface SQLData), the JDBC driver should call the methodSQLData.writeSQLto write it to the SQL data stream. If, on the other hand, the object is of a class implementingRef,Blob,Clob,NClob,Struct,java.net.URL, orArray, the driver should pass it to the database as a value of the corresponding SQL type.Note that this method may be used to pass database-specific abstract data types. The default implementation will throw SQLFeatureNotSupportedException- Parameters:
- parameterName- the name of the parameter
- x- the object containing the input parameter value
- targetSqlType- the SQL type to be sent to the database. The scale argument may further qualify this type.
- scaleOrLength- for- java.sql.JDBCType.DECIMALor- java.sql.JDBCType.NUMERIC types, this is the number of digits after the decimal point. For Java Object types- InputStreamand- Reader, this is the length of the data in the stream or reader. For all other types, this value will be ignored.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatementor if the Java Object specified by x is an InputStream or Reader object and the value of the scale parameter is less than zero
- SQLFeatureNotSupportedException- if the JDBC driver does not support the specified targetSqlType
- Since:
- 1.8
- See Also:
- JDBCType,- SQLType
 
- 
setObjectSets the value of the designated parameter with the given object. This method is similar tosetObject(String parameterName, Object x, SQLType targetSqlType, int scaleOrLength), except that it assumes a scale of zero.The default implementation will throw SQLFeatureNotSupportedException- Parameters:
- parameterName- the name of the parameter
- x- the object containing the input parameter value
- targetSqlType- the SQL type to be sent to the database
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support the specified targetSqlType
- Since:
- 1.8
- See Also:
- JDBCType,- SQLType
 
- 
registerOutParameterRegisters the OUT parameter in ordinal positionparameterIndexto the JDBC typesqlType. All OUT parameters must be registered before a stored procedure is executed.The JDBC type specified by sqlTypefor an OUT parameter determines the Java type that must be used in thegetmethod to read the value of that parameter.If the JDBC type expected to be returned to this output parameter is specific to this particular database, sqlTypemay beJDBCType.OTHERor aSQLTypethat is supported by the JDBC driver. The methodgetObject(int)retrieves the value.The default implementation will throw SQLFeatureNotSupportedException- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- sqlType- the JDBC type code defined by- SQLTypeto use to register the OUT Parameter. If the parameter is of JDBC type- JDBCType.NUMERICor- JDBCType.DECIMAL, the version of- registerOutParameterthat accepts a scale value should be used.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support the specified sqlType
- Since:
- 1.8
- See Also:
- JDBCType,- SQLType
 
- 
registerOutParameterdefault void registerOutParameter(int parameterIndex, SQLType sqlType, int scale) throws SQLExceptionRegisters the parameter in ordinal positionparameterIndexto be of JDBC typesqlType. All OUT parameters must be registered before a stored procedure is executed.The JDBC type specified by sqlTypefor an OUT parameter determines the Java type that must be used in thegetmethod to read the value of that parameter.This version of registerOutParametershould be used when the parameter is of JDBC typeJDBCType.NUMERICorJDBCType.DECIMAL.The default implementation will throw SQLFeatureNotSupportedException- Parameters:
- parameterIndex- the first parameter is 1, the second is 2, and so on
- sqlType- the JDBC type code defined by- SQLTypeto use to register the OUT Parameter.
- scale- the desired number of digits to the right of the decimal point. It must be greater than or equal to zero.
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support the specified sqlType
- Since:
- 1.8
- See Also:
- JDBCType,- SQLType
 
- 
registerOutParameterdefault void registerOutParameter(int parameterIndex, SQLType sqlType, String typeName) throws SQLExceptionRegisters the designated output parameter. This version of the methodregisterOutParametershould be used for a user-defined orREFoutput parameter. Examples of user-defined types include:STRUCT,DISTINCT,JAVA_OBJECT, and named array types.All OUT parameters must be registered before a stored procedure is executed. For a user-defined parameter, the fully-qualified SQL type name of the parameter should also be given, while a REFparameter requires that the fully-qualified type name of the referenced type be given. A JDBC driver that does not need the type code and type name information may ignore it. To be portable, however, applications should always provide these values for user-defined andREFparameters. Although it is intended for user-defined andREFparameters, this method may be used to register a parameter of any JDBC type. If the parameter does not have a user-defined orREFtype, the typeName parameter is ignored.Note: When reading the value of an out parameter, you must use the getter method whose Java type corresponds to the parameter's registered SQL type. The default implementation will throw SQLFeatureNotSupportedException- Parameters:
- parameterIndex- the first parameter is 1, the second is 2,...
- sqlType- the JDBC type code defined by- SQLTypeto use to register the OUT Parameter.
- typeName- the fully-qualified name of an SQL structured type
- Throws:
- SQLException- if the parameterIndex is not valid; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support the specified sqlType
- Since:
- 1.8
- See Also:
- JDBCType,- SQLType
 
- 
registerOutParameterRegisters the OUT parameter namedparameterNameto the JDBC typesqlType. All OUT parameters must be registered before a stored procedure is executed.The JDBC type specified by sqlTypefor an OUT parameter determines the Java type that must be used in thegetmethod to read the value of that parameter.If the JDBC type expected to be returned to this output parameter is specific to this particular database, sqlTypeshould beJDBCType.OTHERor aSQLTypethat is supported by the JDBC driver.. The methodgetObject(int)retrieves the value.The default implementation will throw SQLFeatureNotSupportedException- Parameters:
- parameterName- the name of the parameter
- sqlType- the JDBC type code defined by- SQLTypeto use to register the OUT Parameter. If the parameter is of JDBC type- JDBCType.NUMERICor- JDBCType.DECIMAL, the version of- registerOutParameterthat accepts a scale value should be used.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support the specified sqlType or if the JDBC driver does not support this method
- Since:
- 1.8
- See Also:
- JDBCType,- SQLType
 
- 
registerOutParameterdefault void registerOutParameter(String parameterName, SQLType sqlType, int scale) throws SQLExceptionRegisters the parameter namedparameterNameto be of JDBC typesqlType. All OUT parameters must be registered before a stored procedure is executed.The JDBC type specified by sqlTypefor an OUT parameter determines the Java type that must be used in thegetmethod to read the value of that parameter.This version of registerOutParametershould be used when the parameter is of JDBC typeJDBCType.NUMERICorJDBCType.DECIMAL.The default implementation will throw SQLFeatureNotSupportedException- Parameters:
- parameterName- the name of the parameter
- sqlType- the JDBC type code defined by- SQLTypeto use to register the OUT Parameter.
- scale- the desired number of digits to the right of the decimal point. It must be greater than or equal to zero.
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support the specified sqlType or if the JDBC driver does not support this method
- Since:
- 1.8
- See Also:
- JDBCType,- SQLType
 
- 
registerOutParameterdefault void registerOutParameter(String parameterName, SQLType sqlType, String typeName) throws SQLExceptionRegisters the designated output parameter. This version of the methodregisterOutParametershould be used for a user-named or REF output parameter. Examples of user-named types include: STRUCT, DISTINCT, JAVA_OBJECT, and named array types.All OUT parameters must be registered before a stored procedure is executed. For a user-named parameter the fully-qualified SQL type name of the parameter should also be given, while a REF parameter requires that the fully-qualified type name of the referenced type be given. A JDBC driver that does not need the type code and type name information may ignore it. To be portable, however, applications should always provide these values for user-named and REF parameters. Although it is intended for user-named and REF parameters, this method may be used to register a parameter of any JDBC type. If the parameter does not have a user-named or REF type, the typeName parameter is ignored.Note: When reading the value of an out parameter, you must use the getXXXmethod whose Java type XXX corresponds to the parameter's registered SQL type.The default implementation will throw SQLFeatureNotSupportedException- Parameters:
- parameterName- the name of the parameter
- sqlType- the JDBC type code defined by- SQLTypeto use to register the OUT Parameter.
- typeName- the fully-qualified name of an SQL structured type
- Throws:
- SQLException- if parameterName does not correspond to a named parameter; if a database access error occurs or this method is called on a closed- CallableStatement
- SQLFeatureNotSupportedException- if the JDBC driver does not support the specified sqlType or if the JDBC driver does not support this method
- Since:
- 1.8
- See Also:
- JDBCType,- SQLType
 
 
-