| java.lang.Object org.apache.derby.iapi.jdbc.BrokeredStatement org.apache.derby.iapi.jdbc.BrokeredPreparedStatement org.apache.derby.iapi.jdbc.BrokeredCallableStatement org.apache.derby.iapi.jdbc.BrokeredCallableStatement30 org.apache.derby.iapi.jdbc.BrokeredCallableStatement40
Method Summary | |
public Reader | getCharacterStream(int parameterIndex) | public Reader | getCharacterStream(String parameterName) | public Reader | getNCharacterStream(int parameterIndex) | public Reader | getNCharacterStream(String parameterName) | public NClob | getNClob(int i) | public NClob | getNClob(String parameterName) | public String | getNString(int parameterIndex) | public String | getNString(String parameterName) | public RowId | getRowId(int parameterIndex) | public RowId | getRowId(String parameterName) | public SQLXML | getSQLXML(int parameterIndex) | public SQLXML | getSQLXML(String parametername) | final public boolean | isClosed() Checks if the statement is closed. | public boolean | isPoolable() Forwards to the real CallableStatement. | final public void | setAsciiStream(int parameterIndex, InputStream x) Sets the designated parameter to the given input stream. | final public void | setAsciiStream(int parameterIndex, InputStream x, long length) Sets the designated parameter to the given input stream, which will have
the specified number of bytes. | final public void | setAsciiStream(String parameterName, InputStream x) | final public void | setAsciiStream(String parameterName, InputStream x, long length) Sets the designated parameter to the given input stream, which will have
the specified number of bytes. | final public void | setBinaryStream(int parameterIndex, InputStream x) Sets the designated parameter to the given input stream. | final public void | setBinaryStream(int parameterIndex, InputStream x, long length) Sets the designated parameter to the given input stream, which will have
the specified number of bytes. | final public void | setBinaryStream(String parameterName, InputStream x) | final public void | setBinaryStream(String parameterName, InputStream x, long length) Sets the designated parameter to the given input stream, which will have
the specified number of bytes. | public void | setBlob(String parameterName, Blob x) | final public void | setBlob(String parameterName, InputStream inputStream) | public void | setBlob(String parameterName, InputStream inputStream, long length) | final public void | setBlob(int parameterIndex, InputStream inputStream) Sets the designated parameter to a InputStream object. | public void | setBlob(int parameterIndex, InputStream inputStream, long length) | final public void | setCharacterStream(int parameterIndex, Reader reader) Sets the designated parameter to the given Reader object. | final public void | setCharacterStream(int parameterIndex, Reader x, long length) Sets the designated parameter to the given Reader, which will have
the specified number of bytes. | final public void | setCharacterStream(String parameterName, Reader x) | final public void | setCharacterStream(String parameterName, Reader x, long length) Sets the designated parameter to the given Reader, which will have
the specified number of bytes. | public void | setClob(String parameterName, Clob x) | final public void | setClob(String parameterName, Reader reader) | public void | setClob(String parameterName, Reader reader, long length) | final public void | setClob(int parameterIndex, Reader reader) Sets the designated parameter to a Reader object. | public void | setClob(int parameterIndex, Reader reader, long length) | final public void | setNCharacterStream(String parameterName, Reader value) | public void | setNCharacterStream(String parameterName, Reader value, long length) | public void | setNCharacterStream(int parameterIndex, Reader value) | public void | setNCharacterStream(int index, Reader value, long length) | public void | setNClob(String parameterName, NClob value) | final public void | setNClob(String parameterName, Reader reader) | public void | setNClob(String parameterName, Reader reader, long length) | public void | setNClob(int index, NClob value) | final public void | setNClob(int parameterIndex, Reader reader) | public void | setNClob(int parameterIndex, Reader reader, long length) | public void | setNString(String parameterName, String value) | public void | setNString(int index, String value) | public void | setPoolable(boolean poolable) Forwards to the real CallableStatement. | public void | setRowId(String parameterName, RowId x) | public void | setRowId(int parameterIndex, RowId x) | public void | setSQLXML(String parameterName, SQLXML xmlObject) | public void | setSQLXML(int parameterIndex, SQLXML xmlObject) | public T | unwrap(java.lang.Class<T> interfaces) |
isClosed | final public boolean isClosed() throws SQLException(Code) | | Checks if the statement is closed.
true if the statement is closed,false otherwise exception: SQLException - if an error occurs |
isPoolable | public boolean isPoolable() throws SQLException(Code) | | Forwards to the real CallableStatement.
true if the underlying CallableStatement is poolable,false otherwise. throws: SQLException - if the forwarding call fails. |
setAsciiStream | final public void setAsciiStream(int parameterIndex, InputStream x) throws SQLException(Code) | | Sets the designated parameter to the given input stream.
Parameters: parameterIndex - the first parameter is 1, the second is 2, ... Parameters: x - the Java input stream that contains the ASCII parameter value throws: SQLException - if a database access error occurs or this method iscalled on a closed PreparedStatement |
setAsciiStream | final public void setAsciiStream(int parameterIndex, InputStream x, long length) throws SQLException(Code) | | Sets the designated parameter to the given input stream, which will have
the specified number of bytes.
Parameters: parameterIndex - the first parameter is 1, the second is 2, ... Parameters: x - the java input stream which contains the ASCII parameter value Parameters: length - the number of bytes in the stream exception: SQLException - thrown on failure. |
setAsciiStream | final public void setAsciiStream(String parameterName, InputStream x, long length) throws SQLException(Code) | | Sets the designated parameter to the given input stream, which will have
the specified number of bytes.
Parameters: parameterName - the name of the parameter Parameters: x - the java input stream which contains the ASCII parameter value Parameters: length - the number of bytes in the stream exception: SQLException - thrown on failure. |
setBinaryStream | final public void setBinaryStream(int parameterIndex, InputStream x) throws SQLException(Code) | | Sets the designated parameter to the given input stream.
Parameters: parameterIndex - the first parameter is 1, the second is 2, ... Parameters: x - the java input stream which contains the binary parameter value throws: SQLException - if a database access error occurs or this method iscalled on a closed PreparedStatement |
setBinaryStream | final public void setBinaryStream(int parameterIndex, InputStream x, long length) throws SQLException(Code) | | Sets the designated parameter to the given input stream, which will have
the specified number of bytes.
Parameters: parameterIndex - the first parameter is 1, the second is 2, ... Parameters: x - the java input stream which contains the binary parameter value Parameters: length - the number of bytes in the stream exception: SQLException - thrown on failure. |
setBinaryStream | final public void setBinaryStream(String parameterName, InputStream x, long length) throws SQLException(Code) | | Sets the designated parameter to the given input stream, which will have
the specified number of bytes.
Parameters: parameterName - the name of the parameter Parameters: x - the java input stream which contains the binary parameter value Parameters: length - the number of bytes in the stream exception: SQLException - thrown on failure. |
setBlob | final public void setBlob(int parameterIndex, InputStream inputStream) throws SQLException(Code) | | 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 .
Parameters: inputStream - an object that contains the data to set the parametervalue to. throws: SQLException - if a database access error occurs, this method iscalled on a closed PreparedStatement |
setCharacterStream | final public void setCharacterStream(int parameterIndex, Reader reader) throws SQLException(Code) | | Sets the designated parameter to the given Reader object.
Parameters: parameterIndex - the first parameter is 1, the second is 2, ... Parameters: reader - the java.io.Reader object that contains theUnicode data throws: SQLException - if a database access error occurs or this method iscalled on a closed PreparedStatement |
setCharacterStream | final public void setCharacterStream(int parameterIndex, Reader x, long length) throws SQLException(Code) | | Sets the designated parameter to the given Reader, which will have
the specified number of bytes.
Parameters: parameterIndex - the first parameter is 1, the second is 2, ... Parameters: x - the java Reader which contains the UNICODE value Parameters: length - the number of bytes in the stream exception: SQLException - thrown on failure. |
setCharacterStream | final public void setCharacterStream(String parameterName, Reader x, long length) throws SQLException(Code) | | Sets the designated parameter to the given Reader, which will have
the specified number of bytes.
Parameters: parameterName - the name of the parameter Parameters: x - the java Reader which contains the UNICODE value Parameters: length - the number of bytes in the stream exception: SQLException - thrown on failure. |
setClob | final public void setClob(int parameterIndex, Reader reader) throws SQLException(Code) | | 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 .
Parameters: parameterIndex - the first parameter is 1, the second is 2, ... Parameters: reader - an object that contains the data to set the parametervalue to. throws: SQLException - if a database access error occurs, this method iscalled on a closed PreparedStatement |
setPoolable | public void setPoolable(boolean poolable) throws SQLException(Code) | | Forwards to the real CallableStatement.
Parameters: poolable - new value for the poolable hint. throws: SQLException - if the forwarding call fails. |
unwrap | public T unwrap(java.lang.Class<T> interfaces) throws SQLException(Code) | | Returns this if this class implements the interface
Parameters: interfaces - a Class defining an interface an object that implements the interface throws: java.sql.SQLExption - if no object if found that implements the interface |
Methods inherited from org.apache.derby.iapi.jdbc.BrokeredCallableStatement30 | public CallableStatement createDuplicateStatement(Connection conn, CallableStatement oldStatement) throws SQLException(Code)(Java Doc) final public java.sql.Array getArray(java.lang.String parameterName) throws SQLException(Code)(Java Doc) final public java.math.BigDecimal getBigDecimal(java.lang.String parameterName) throws SQLException(Code)(Java Doc) final public java.sql.Blob getBlob(java.lang.String parameterName) throws SQLException(Code)(Java Doc) final public boolean getBoolean(java.lang.String parameterName) throws SQLException(Code)(Java Doc) final public byte getByte(java.lang.String parameterName) throws SQLException(Code)(Java Doc) final public byte[] getBytes(java.lang.String parameterName) throws SQLException(Code)(Java Doc) final public java.sql.Clob getClob(java.lang.String parameterName) throws SQLException(Code)(Java Doc) final public java.sql.Date getDate(java.lang.String parameterName) throws SQLException(Code)(Java Doc) final public java.sql.Date getDate(java.lang.String parameterName, java.util.Calendar cal) throws SQLException(Code)(Java Doc) final public double getDouble(java.lang.String parameterName) throws SQLException(Code)(Java Doc) final public float getFloat(java.lang.String parameterName) throws SQLException(Code)(Java Doc) final public int getInt(java.lang.String parameterName) throws SQLException(Code)(Java Doc) final public long getLong(java.lang.String parameterName) throws SQLException(Code)(Java Doc) final public java.lang.Object getObject(java.lang.String parameterName) throws SQLException(Code)(Java Doc) final public java.lang.Object getObject(java.lang.String parameterName, java.util.Map map) throws SQLException(Code)(Java Doc) final public ParameterMetaData getParameterMetaData() throws SQLException(Code)(Java Doc) final public java.sql.Ref getRef(java.lang.String parameterName) throws SQLException(Code)(Java Doc) final public short getShort(java.lang.String parameterName) throws SQLException(Code)(Java Doc) final public java.lang.String getString(java.lang.String parameterName) throws SQLException(Code)(Java Doc) final public java.sql.Time getTime(java.lang.String parameterName) throws SQLException(Code)(Java Doc) final public java.sql.Time getTime(java.lang.String parameterName, java.util.Calendar cal) throws SQLException(Code)(Java Doc) final public java.sql.Timestamp getTimestamp(java.lang.String parameterName) throws SQLException(Code)(Java Doc) final public java.sql.Timestamp getTimestamp(java.lang.String parameterName, java.util.Calendar cal) throws SQLException(Code)(Java Doc) final public java.net.URL getURL(java.lang.String parameterName) throws SQLException(Code)(Java Doc) final public java.net.URL getURL(int i) throws SQLException(Code)(Java Doc) final public void registerOutParameter(String a, int b) throws SQLException(Code)(Java Doc) final public void registerOutParameter(String a, int b, int c) throws SQLException(Code)(Java Doc) final public void registerOutParameter(String a, int b, String c) throws SQLException(Code)(Java Doc) final public void setAsciiStream(java.lang.String parameterName, java.io.InputStream value, int length) throws SQLException(Code)(Java Doc) final public void setBigDecimal(java.lang.String parameterName, java.math.BigDecimal value) throws SQLException(Code)(Java Doc) final public void setBinaryStream(java.lang.String parameterName, java.io.InputStream value, int length) throws SQLException(Code)(Java Doc) final public void setBoolean(java.lang.String parameterName, boolean value) throws SQLException(Code)(Java Doc) final public void setByte(java.lang.String parameterName, byte value) throws SQLException(Code)(Java Doc) final public void setBytes(java.lang.String parameterName, byte[] value) throws SQLException(Code)(Java Doc) final public void setCharacterStream(java.lang.String parameterName, java.io.Reader value, int length) throws SQLException(Code)(Java Doc) final public void setDate(java.lang.String parameterName, java.sql.Date value) throws SQLException(Code)(Java Doc) final public void setDate(java.lang.String parameterName, java.sql.Date value, java.util.Calendar cal) throws SQLException(Code)(Java Doc) final public void setDouble(java.lang.String parameterName, double value) throws SQLException(Code)(Java Doc) final public void setFloat(java.lang.String parameterName, float value) throws SQLException(Code)(Java Doc) final public void setInt(java.lang.String parameterName, int value) throws SQLException(Code)(Java Doc) final public void setLong(java.lang.String parameterName, long value) throws SQLException(Code)(Java Doc) final public void setNull(java.lang.String parameterName, int type) throws SQLException(Code)(Java Doc) final public void setNull(java.lang.String parameterName, int a, java.lang.String b) throws SQLException(Code)(Java Doc) final public void setObject(java.lang.String parameterName, java.lang.Object value, int a, int b) throws SQLException(Code)(Java Doc) final public void setObject(java.lang.String parameterName, java.lang.Object value, int a) throws SQLException(Code)(Java Doc) final public void setObject(java.lang.String parameterName, java.lang.Object value) throws SQLException(Code)(Java Doc) final public void setShort(java.lang.String parameterName, short value) throws SQLException(Code)(Java Doc) final public void setString(java.lang.String parameterName, java.lang.String value) throws SQLException(Code)(Java Doc) final public void setTime(java.lang.String parameterName, java.sql.Time value) throws SQLException(Code)(Java Doc) final public void setTime(java.lang.String parameterName, java.sql.Time value, java.util.Calendar cal) throws SQLException(Code)(Java Doc) final public void setTimestamp(java.lang.String parameterName, java.sql.Timestamp value) throws SQLException(Code)(Java Doc) final public void setTimestamp(java.lang.String parameterName, java.sql.Timestamp value, java.util.Calendar cal) throws SQLException(Code)(Java Doc) final public void setURL(java.lang.String parameterName, java.net.URL value) throws SQLException(Code)(Java Doc) final public void setURL(int i, URL x) throws SQLException(Code)(Java Doc)
|
Methods inherited from org.apache.derby.iapi.jdbc.BrokeredCallableStatement | public CallableStatement createDuplicateStatement(Connection conn, CallableStatement oldStatement) throws SQLException(Code)(Java Doc) final public Array getArray(int i) throws SQLException(Code)(Java Doc) final public BigDecimal getBigDecimal(int parameterIndex, int scale) throws SQLException(Code)(Java Doc) final public BigDecimal getBigDecimal(int parameterIndex) throws SQLException(Code)(Java Doc) final public Blob getBlob(int i) throws SQLException(Code)(Java Doc) final public boolean getBoolean(int parameterIndex) throws SQLException(Code)(Java Doc) final public byte getByte(int parameterIndex) throws SQLException(Code)(Java Doc) final public byte[] getBytes(int parameterIndex) throws SQLException(Code)(Java Doc) final CallableStatement getCallableStatement() throws SQLException(Code)(Java Doc) final public Clob getClob(int i) throws SQLException(Code)(Java Doc) final public Date getDate(int parameterIndex) throws SQLException(Code)(Java Doc) final public Date getDate(int parameterIndex, Calendar cal) throws SQLException(Code)(Java Doc) final public double getDouble(int parameterIndex) throws SQLException(Code)(Java Doc) final public float getFloat(int parameterIndex) throws SQLException(Code)(Java Doc) final public int getInt(int parameterIndex) throws SQLException(Code)(Java Doc) final public long getLong(int parameterIndex) throws SQLException(Code)(Java Doc) final public Object getObject(int parameterIndex) throws SQLException(Code)(Java Doc) final public Object getObject(int i, Map map) throws SQLException(Code)(Java Doc) final PreparedStatement getPreparedStatement() throws SQLException(Code)(Java Doc) final public Ref getRef(int i) throws SQLException(Code)(Java Doc) final public short getShort(int parameterIndex) throws SQLException(Code)(Java Doc) final public String getString(int parameterIndex) throws SQLException(Code)(Java Doc) final public Time getTime(int parameterIndex) throws SQLException(Code)(Java Doc) final public Time getTime(int parameterIndex, Calendar cal) throws SQLException(Code)(Java Doc) final public Timestamp getTimestamp(int parameterIndex) throws SQLException(Code)(Java Doc) final public Timestamp getTimestamp(int parameterIndex, Calendar cal) throws SQLException(Code)(Java Doc) final public void registerOutParameter(int parameterIndex, int sqlType) throws SQLException(Code)(Java Doc) final public void registerOutParameter(int parameterIndex, int sqlType, int scale) throws SQLException(Code)(Java Doc) final public void registerOutParameter(int paramIndex, int sqlType, String typeName) throws SQLException(Code)(Java Doc) final public boolean wasNull() throws SQLException(Code)(Java Doc)
|
Methods inherited from org.apache.derby.iapi.jdbc.BrokeredPreparedStatement | final public void addBatch() throws SQLException(Code)(Java Doc) final public void clearParameters() throws SQLException(Code)(Java Doc) public PreparedStatement createDuplicateStatement(Connection conn, PreparedStatement oldStatement) throws SQLException(Code)(Java Doc) final public boolean execute() throws SQLException(Code)(Java Doc) final public ResultSet executeQuery() throws SQLException(Code)(Java Doc) final public int executeUpdate() throws SQLException(Code)(Java Doc) public EngineParameterMetaData getEmbedParameterSetMetaData() throws SQLException(Code)(Java Doc) final public java.sql.ResultSetMetaData getMetaData() throws SQLException(Code)(Java Doc) PreparedStatement getPreparedStatement() throws SQLException(Code)(Java Doc) final public Statement getStatement() throws SQLException(Code)(Java Doc) final public void setArray(int i, Array x) throws SQLException(Code)(Java Doc) final public void setAsciiStream(int parameterIndex, InputStream x, int length) throws SQLException(Code)(Java Doc) final public void setBigDecimal(int parameterIndex, java.math.BigDecimal x) throws SQLException(Code)(Java Doc) final public void setBinaryStream(int parameterIndex, InputStream x, int length) throws SQLException(Code)(Java Doc) final public void setBlob(int i, Blob x) throws SQLException(Code)(Java Doc) final public void setBoolean(int parameterIndex, boolean x) throws SQLException(Code)(Java Doc) final public void setByte(int parameterIndex, byte x) throws SQLException(Code)(Java Doc) final public void setBytes(int parameterIndex, byte[] x) throws SQLException(Code)(Java Doc) final public void setCharacterStream(int parameterIndex, Reader reader, int length) throws SQLException(Code)(Java Doc) final public void setClob(int i, Clob x) throws SQLException(Code)(Java Doc) final public void setDate(int parameterIndex, Date x) throws SQLException(Code)(Java Doc) final public void setDate(int i, Date x, Calendar cal) throws SQLException(Code)(Java Doc) final public void setDouble(int parameterIndex, double x) throws SQLException(Code)(Java Doc) final public void setFloat(int parameterIndex, float x) throws SQLException(Code)(Java Doc) final public void setInt(int parameterIndex, int x) throws SQLException(Code)(Java Doc) final public void setLong(int parameterIndex, long x) throws SQLException(Code)(Java Doc) final public void setNull(int parameterIndex, int sqlType) throws SQLException(Code)(Java Doc) final public void setNull(int parameterIndex, int sqlType, String typeName) throws SQLException(Code)(Java Doc) final public void setObject(int parameterIndex, Object x, int targetSqlType, int scale) throws SQLException(Code)(Java Doc) final public void setObject(int parameterIndex, Object x, int targetSqlType) throws SQLException(Code)(Java Doc) final public void setObject(int parameterIndex, Object x) throws SQLException(Code)(Java Doc) final public void setRef(int i, Ref x) throws SQLException(Code)(Java Doc) final public void setShort(int parameterIndex, short x) throws SQLException(Code)(Java Doc) final public void setString(int parameterIndex, String x) throws SQLException(Code)(Java Doc) final public void setTime(int parameterIndex, Time x) throws SQLException(Code)(Java Doc) final public void setTime(int i, Time x, Calendar cal) throws SQLException(Code)(Java Doc) final public void setTimestamp(int parameterIndex, Timestamp x) throws SQLException(Code)(Java Doc) final public void setTimestamp(int i, Timestamp x, Calendar cal) throws SQLException(Code)(Java Doc) final public void setUnicodeStream(int parameterIndex, InputStream x, int length) throws SQLException(Code)(Java Doc)
|
|
|