Methods Summary |
---|
public java.sql.ResultSet | executeQuery()Executes the SQL query in this PreparedStatement object
and returns the ResultSet object generated by the query.
ResultSet rs = callableStatement.executeQuery();
if (rs == null)
return null;
return new ResultSetWrapper40(this, rs);
|
public java.sql.ResultSet | executeQuery(java.lang.String sql)Executes the given SQL statement, which returns a single
ResultSet object.
ResultSet rs = callableStatement.executeQuery(sql);
if (rs == null)
return null;
return new ResultSetWrapper40(this, rs);
|
public java.io.Reader | getCharacterStream(int parameterIndex)Retrieves the value of the designated parameter as a
java.io.Reader object in the Java programming language.
return callableStatement.getCharacterStream(parameterIndex);
|
public java.io.Reader | getCharacterStream(java.lang.String parameterName)Retrieves the value of the designated parameter as a
java.io.Reader object in the Java programming language.
return callableStatement.getCharacterStream(parameterName);
|
public java.sql.ResultSet | getGeneratedKeys()Retrieves any auto-generated keys created as a result of executing this
Statement object. If this Statement object did
not generate any keys, an empty ResultSet
object is returned.
Note:If the columns which represent the auto-generated keys were not specified,
the JDBC driver implementation will determine the columns which best represent the auto-generated keys.
ResultSet rs = callableStatement.getGeneratedKeys();
if (rs == null)
return null;
return new ResultSetWrapper40(this, rs);
|
public java.io.Reader | getNCharacterStream(int parameterIndex)Retrieves the value of the designated parameter as a
java.io.Reader object in the Java programming language.
It is intended for use when
accessing NCHAR ,NVARCHAR
and LONGNVARCHAR parameters.
return callableStatement.getNCharacterStream(parameterIndex);
|
public java.io.Reader | getNCharacterStream(java.lang.String parameterName)Retrieves the value of the designated parameter as a
java.io.Reader object in the Java programming language.
It is intended for use when
accessing NCHAR ,NVARCHAR
and LONGNVARCHAR parameters.
return callableStatement.getNCharacterStream(parameterName);
|
public java.sql.NClob | getNClob(int parameterIndex)Retrieves the value of the designated JDBC NCLOB parameter as a
java.sql.NClob object in the Java programming language.
return callableStatement.getNClob(parameterIndex);
|
public java.sql.NClob | getNClob(java.lang.String parameterName)Retrieves the value of a JDBC NCLOB parameter as a
java.sql.NClob object in the Java programming language.
return callableStatement.getNClob(parameterName);
|
public java.lang.String | getNString(int parameterIndex)Retrieves the value of the designated NCHAR ,
NVARCHAR
or LONGNVARCHAR parameter as
a String in the Java programming language.
For the fixed-length type JDBC NCHAR ,
the String object
returned has exactly the same value the SQL
NCHAR value had in the
database, including any padding added by the database.
return callableStatement.getNString(parameterIndex);
|
public java.lang.String | getNString(java.lang.String parameterName)Retrieves the value of the designated NCHAR ,
NVARCHAR
or LONGNVARCHAR parameter as
a String in the Java programming language.
For the fixed-length type JDBC NCHAR ,
the String object
returned has exactly the same value the SQL
NCHAR value had in the
database, including any padding added by the database.
return callableStatement.getNString(parameterName);
|
public java.sql.ResultSet | getResultSet()Retrieves the current result as a ResultSet object.
This method should be called only once per result.
ResultSet rs = callableStatement.getResultSet();
if (rs == null)
return null;
return new ResultSetWrapper40(this, rs);
|
public java.sql.RowId | getRowId(int parameterIndex)Retrieves the value of the designated JDBC ROWID parameter as a
java.sql.RowId object.
return callableStatement.getRowId(parameterIndex);
|
public java.sql.RowId | getRowId(java.lang.String parameterName)Retrieves the value of the designated JDBC ROWID parameter as a
java.sql.RowId object.
return callableStatement.getRowId(parameterName);
|
public java.sql.SQLXML | getSQLXML(int parameterIndex)Retrieves the value of the designated SQL XML parameter as a
java.sql.SQLXML object in the Java programming language.
return callableStatement.getSQLXML(parameterIndex);
|
public java.sql.SQLXML | getSQLXML(java.lang.String parameterName)Retrieves the value of the designated SQL XML parameter as a
java.sql.SQLXML object in the Java programming language.
return callableStatement.getSQLXML(parameterName);
|
public boolean | isClosed()Retrieves whether this Statement object has been closed. A Statement is closed if the
method close has been called on it, or if it is automatically closed.
return callableStatement.isClosed();
|
public boolean | isPoolable()Returns a value indicating whether the Statement
is poolable or not.
return callableStatement.isPoolable();
|
public boolean | isWrapperFor(java.lang.Class iface)Returns true if this either implements the interface argument or is directly or indirectly a wrapper
for an object that does. Returns false otherwise. If this implements the interface then return true,
else if this is a wrapper then return the result of recursively calling isWrapperFor on the wrapped
object. If this does not implement the interface and is not a wrapper, return false.
This method should be implemented as a low-cost operation compared to unwrap so that
callers can use this method to avoid expensive unwrap calls that may fail. If this method
returns true then calling unwrap with the same argument should succeed.
boolean result ;
if (iface.isInstance(this)) {
result = true;
}else{
result = callableStatement.isWrapperFor(iface);
}
return result;
|
public void | setAsciiStream(java.lang.String parameterName, java.io.InputStream x)Sets the designated parameter to the given input stream.
When a very large ASCII value is input to a LONGVARCHAR
parameter, it may be more practical to send it via a
java.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
setAsciiStream which takes a length parameter.
callableStatement.setAsciiStream(parameterName, x);
|
public void | setAsciiStream(java.lang.String parameterName, java.io.InputStream x, long length)Sets 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 a LONGVARCHAR
parameter, it may be more practical to send it via a
java.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.
callableStatement.setAsciiStream(parameterName, x, length);
|
public void | setAsciiStream(int parameterIndex, java.io.InputStream x)Sets the designated parameter to the given input stream.
When a very large ASCII value is input to a LONGVARCHAR
parameter, it may be more practical to send it via a
java.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
setAsciiStream which takes a length parameter.
callableStatement.setAsciiStream(parameterIndex, x);
|
public void | setAsciiStream(int parameterIndex, java.io.InputStream x, long length)Sets 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 a LONGVARCHAR
parameter, it may be more practical to send it via a
java.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.
callableStatement.setAsciiStream(parameterIndex, x, length);
|
public void | setBinaryStream(java.lang.String parameterName, java.io.InputStream x)Sets the designated parameter to the given input stream.
When a very large binary value is input to a LONGVARBINARY
parameter, it may be more practical to send it via a
java.io.InputStream object. 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
setBinaryStream which takes a length parameter.
callableStatement.setBinaryStream(parameterName, x);
|
public void | setBinaryStream(java.lang.String parameterName, java.io.InputStream x, long length)Sets 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 a LONGVARBINARY
parameter, it may be more practical to send it via a
java.io.InputStream object. 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.
callableStatement.setBinaryStream(parameterName, x, length);
|
public void | setBinaryStream(int parameterIndex, java.io.InputStream x)Sets the designated parameter to the given input stream.
When a very large binary value is input to a LONGVARBINARY
parameter, it may be more practical to send it via a
java.io.InputStream object. 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
setBinaryStream which takes a length parameter.
callableStatement.setBinaryStream(parameterIndex, x);
|
public void | setBinaryStream(int parameterIndex, java.io.InputStream x, long length)Sets 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 a LONGVARBINARY
parameter, it may be more practical to send it via a
java.io.InputStream object. 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.
callableStatement.setBinaryStream(parameterIndex, x, length);
|
public void | setBlob(java.lang.String parameterName, java.sql.Blob x)Sets the designated parameter to the given java.sql.Blob object.
The driver converts this to an SQL BLOB value when it
sends it to the database.
callableStatement.setBlob(parameterName, x);
|
public void | setBlob(java.lang.String parameterName, java.io.InputStream inputStream)Sets the designated parameter to a InputStream object.
This method differs from the setBinaryStream (int, InputStream)
method because it informs the driver that the parameter value should be
sent to the server as a BLOB . When the setBinaryStream method is used,
the driver may have to do extra work to determine whether the parameter
data should be send to the server as a LONGVARBINARY or a BLOB
Note: Consult your JDBC driver documentation to determine if
it might be more efficient to use a version of
setBlob which takes a length parameter.
callableStatement.setBlob(parameterName, inputStream);
|
public void | setBlob(java.lang.String parameterName, java.io.InputStream inputStream, long length)Sets the designated parameter to a InputStream object. The inputstream must contain the number
of characters specified by length, otherwise a SQLException will be
generated when the CallableStatement is executed.
This method differs from the setBinaryStream (int, InputStream, int)
method because it informs the driver that the parameter value should be
sent to the server as a BLOB . When the setBinaryStream method is used,
the driver may have to do extra work to determine whether the parameter
data should be sent to the server as a LONGVARBINARY or a BLOB
callableStatement.setBlob(parameterName, inputStream, length);
|
public void | setBlob(int parameterIndex, java.io.InputStream inputStream)Sets the designated parameter to a InputStream object.
This method differs from the setBinaryStream (int, InputStream)
method because it informs the driver that the parameter value should be
sent to the server as a BLOB . When the setBinaryStream method is used,
the driver may have to do extra work to determine whether the parameter
data should be sent to the server as a LONGVARBINARY or a BLOB
Note: Consult your JDBC driver documentation to determine if
it might be more efficient to use a version of
setBlob which takes a length parameter.
callableStatement.setBlob(parameterIndex, inputStream);
|
public void | setBlob(int parameterIndex, java.io.InputStream inputStream, long length)Sets the designated parameter to a InputStream object. The inputstream must contain the number
of characters specified by length otherwise a SQLException will be
generated when the PreparedStatement is executed.
This method differs from the setBinaryStream (int, InputStream, int)
method because it informs the driver that the parameter value should be
sent to the server as a BLOB . When the setBinaryStream method is used,
the driver may have to do extra work to determine whether the parameter
data should be sent to the server as a LONGVARBINARY or a BLOB
callableStatement.setBlob(parameterIndex, inputStream, length);
|
public void | setCharacterStream(java.lang.String parameterName, java.io.Reader reader)Sets the designated parameter to the given Reader
object.
When a very large UNICODE value is input to a LONGVARCHAR
parameter, it may be more practical to send it via a
java.io.Reader object. 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
setCharacterStream which takes a length parameter.
callableStatement.setCharacterStream(parameterName, reader);
|
public void | setCharacterStream(java.lang.String parameterName, java.io.Reader reader, long length)Sets the designated parameter to the given Reader
object, which is the given number of characters long.
When a very large UNICODE value is input to a LONGVARCHAR
parameter, it may be more practical to send it via a
java.io.Reader object. 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.
callableStatement.setCharacterStream(parameterName, reader, length);
|
public void | setCharacterStream(int parameterIndex, java.io.Reader reader)Sets the designated parameter to the given Reader
object.
When a very large UNICODE value is input to a LONGVARCHAR
parameter, it may be more practical to send it via a
java.io.Reader object. 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
setCharacterStream which takes a length parameter.
callableStatement.setCharacterStream(parameterIndex, reader);
|
public void | setCharacterStream(int parameterIndex, java.io.Reader reader, long length)Sets the designated parameter to the given Reader
object, which is the given number of characters long.
When a very large UNICODE value is input to a LONGVARCHAR
parameter, it may be more practical to send it via a
java.io.Reader object. 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.
callableStatement.setCharacterStream(parameterIndex, reader, length);
|
public void | setClob(java.lang.String parameterName, java.sql.Clob x)Sets the designated parameter to the given java.sql.Clob object.
The driver converts this to an SQL CLOB value when it
sends it to the database.
callableStatement.setClob(parameterName, x);
|
public void | setClob(java.lang.String parameterName, java.io.Reader reader)Sets the designated parameter to a Reader object.
This method differs from the setCharacterStream (int, Reader) method
because it informs the driver that the parameter value should be sent to
the server as a CLOB . When the setCharacterStream method is used, the
driver may have to do extra work to determine whether the parameter
data should be send to the server as a LONGVARCHAR or a CLOB
Note: Consult your JDBC driver documentation to determine if
it might be more efficient to use a version of
setClob which takes a length parameter.
callableStatement.setClob(parameterName, reader);
|
public void | setClob(java.lang.String parameterName, java.io.Reader reader, long length)Sets the designated parameter to a Reader object. The reader must contain the number
of characters specified by length otherwise a SQLException will be
generated when the CallableStatement is executed.
This method differs from the setCharacterStream (int, Reader, int) method
because it informs the driver that the parameter value should be sent to
the server as a CLOB . When the setCharacterStream method is used, the
driver may have to do extra work to determine whether the parameter
data should be send to the server as a LONGVARCHAR or a CLOB
callableStatement.setClob(parameterName, reader, length);
|
public void | setClob(int parameterIndex, java.io.Reader reader)Sets the designated parameter to a Reader object.
This method differs from the setCharacterStream (int, Reader) method
because it informs the driver that the parameter value should be sent to
the server as a CLOB . When the setCharacterStream method is used, the
driver may have to do extra work to determine whether the parameter
data should be sent to the server as a LONGVARCHAR or a CLOB
Note: Consult your JDBC driver documentation to determine if
it might be more efficient to use a version of
setClob which takes a length parameter.
callableStatement.setClob(parameterIndex, reader);
|
public void | setClob(int parameterIndex, java.io.Reader reader, long length)Sets the designated parameter to a Reader object. The reader must contain the number
of characters specified by length otherwise a SQLException will be
generated when the PreparedStatement is executed.
This method differs from the setCharacterStream (int, Reader, int) method
because it informs the driver that the parameter value should be sent to
the server as a CLOB . When the setCharacterStream method is used, the
driver may have to do extra work to determine whether the parameter
data should be sent to the server as a LONGVARCHAR or a CLOB
callableStatement.setClob(parameterIndex, reader, length);
|
public void | setNCharacterStream(java.lang.String parameterName, java.io.Reader value)Sets the designated parameter to a Reader object. The
Reader reads 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
setNCharacterStream which takes a length parameter.
callableStatement.setNCharacterStream(parameterName, value);
|
public void | setNCharacterStream(java.lang.String parameterName, java.io.Reader value, long length)Sets the designated parameter to a Reader object. The
Reader reads 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.
callableStatement.setNCharacterStream(parameterName, value, length);
|
public void | setNCharacterStream(int parameterIndex, java.io.Reader value)Sets the designated parameter to a Reader object. The
Reader reads 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
setNCharacterStream which takes a length parameter.
callableStatement.setNCharacterStream(parameterIndex, value);
|
public void | setNCharacterStream(int parameterIndex, java.io.Reader value, long length)Sets the designated parameter to a Reader object. The
Reader reads 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.
callableStatement.setNCharacterStream(parameterIndex, value, length);
|
public void | setNClob(java.lang.String parameterName, java.sql.NClob reader)Sets the designated parameter to a Reader object.
This method differs from the setCharacterStream (int, Reader) method
because it informs the driver that the parameter value should be sent to
the server as a NCLOB . When the setCharacterStream method is used, the
driver may have to do extra work to determine whether the parameter
data should be send to the server as a LONGNVARCHAR or a NCLOB
Note: Consult your JDBC driver documentation to determine if
it might be more efficient to use a version of
setNClob which takes a length parameter.
callableStatement.setNClob(parameterName, reader);
|
public void | setNClob(java.lang.String parameterName, java.io.Reader reader)Sets the designated parameter to a Reader object.
This method differs from the setCharacterStream (int, Reader) method
because it informs the driver that the parameter value should be sent to
the server as a NCLOB . When the setCharacterStream method is used, the
driver may have to do extra work to determine whether the parameter
data should be send to the server as a LONGNVARCHAR or a NCLOB
Note: Consult your JDBC driver documentation to determine if
it might be more efficient to use a version of
setNClob which takes a length parameter.
callableStatement.setNClob(parameterName, reader);
|
public void | setNClob(java.lang.String parameterName, java.io.Reader reader, long length)Sets the designated parameter to a Reader object. The reader must contain the number
of characters specified by length otherwise a SQLException will be
generated when the CallableStatement is executed.
This method differs from the setCharacterStream (int, Reader, int) method
because it informs the driver that the parameter value should be sent to
the server as a NCLOB . When the setCharacterStream method is used, the
driver may have to do extra work to determine whether the parameter
data should be send to the server as a LONGNVARCHAR or a NCLOB
callableStatement.setNClob(parameterName, reader, length);
|
public void | setNClob(int parameterIndex, java.sql.NClob value)Sets the designated parameter to a java.sql.NClob object. The driver converts this to a
SQL NCLOB value when it sends it to the database.
callableStatement.setNClob(parameterIndex, value);
|
public void | setNClob(int parameterIndex, java.io.Reader reader)Sets the designated parameter to a Reader object.
This method differs from the setCharacterStream (int, Reader) method
because it informs the driver that the parameter value should be sent to
the server as a NCLOB . When the setCharacterStream method is used, the
driver may have to do extra work to determine whether the parameter
data should be sent to the server as a LONGNVARCHAR or a NCLOB
Note: Consult your JDBC driver documentation to determine if
it might be more efficient to use a version of
setNClob which takes a length parameter.
callableStatement.setNClob(parameterIndex, reader);
|
public void | setNClob(int parameterIndex, java.io.Reader reader, long length)Sets the designated parameter to a Reader object. The reader must contain the number
of characters specified by length otherwise a SQLException will be
generated when the PreparedStatement is executed.
This method differs from the setCharacterStream (int, Reader, int) method
because it informs the driver that the parameter value should be sent to
the server as a NCLOB . When the setCharacterStream method is used, the
driver may have to do extra work to determine whether the parameter
data should be sent to the server as a LONGNVARCHAR or a NCLOB
callableStatement.setNClob(parameterIndex, reader, length);
|
public void | setNString(java.lang.String parameterName, java.lang.String value)Sets the designated parameter to the given String object.
The driver converts this to a SQL NCHAR or
NVARCHAR or LONGNVARCHAR
callableStatement.setNString(parameterName, value);
|
public void | setNString(int parameterIndex, java.lang.String value)Sets the designated paramter to the given String object.
The driver converts this to a SQL NCHAR or
NVARCHAR or LONGNVARCHAR value
(depending on the argument's
size relative to the driver's limits on NVARCHAR values)
when it sends it to the database.
callableStatement.setNString(parameterIndex, value);
|
public void | setPoolable(boolean poolable)Requests that a Statement be pooled or not pooled. The value
specified is a hint to the statement pool implementation indicating
whether the applicaiton wants the statement to be pooled. It is up to
the statement pool manager as to whether the hint is used.
The poolable value of a statement is applicable to both internal
statement caches implemented by the driver and external statement caches
implemented by application servers and other applications.
By default, a Statement is not poolable when created, and
a PreparedStatement and CallableStatement
are poolable when created.
callableStatement.setPoolable(poolable);
|
public void | setRowId(java.lang.String parameterName, java.sql.RowId x)Sets the designated parameter to the given java.sql.RowId object. The
driver converts this to a SQL ROWID when it sends it to the
database.
callableStatement.setRowId(parameterName, x);
|
public void | setRowId(int parameterIndex, java.sql.RowId x)Sets the designated parameter to the given java.sql.RowId object. The
driver converts this to a SQL ROWID value when it sends it
to the database
callableStatement.setRowId(parameterIndex, x);
|
public void | setSQLXML(java.lang.String parameterName, java.sql.SQLXML xmlObject)Sets the designated parameter to the given java.sql.SQLXML object. The driver converts this to an
SQL XML value when it sends it to the database.
callableStatement.setSQLXML(parameterName, xmlObject);
|
public void | setSQLXML(int parameterIndex, java.sql.SQLXML xmlObject)Sets the designated parameter to the given java.sql.SQLXML object.
The driver converts this to an
SQL XML value when it sends it to the database.
callableStatement.setSQLXML(parameterIndex, xmlObject);
|
public T | unwrap(java.lang.Class iface)Returns an object that implements the given interface to allow access to
non-standard methods, or standard methods not exposed by the proxy.
If the receiver implements the interface then the result is the receiver
or a proxy for the receiver. If the receiver is a wrapper
and the wrapped object implements the interface then the result is the
wrapped object or a proxy for the wrapped object. Otherwise return the
the result of calling unwrap recursively on the wrapped object
or a proxy for that result. If the receiver is not a
wrapper and does not implement the interface, then an SQLException is thrown.
T result = null;
if (iface.isInstance(this)) {
result = iface.cast(this);
} else {
result = callableStatement.unwrap(iface);
}
return result;
|