All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----oracle.jdbc.driver.OracleStatement | +----oracle.jdbc.driver.OraclePreparedStatement | +----oracle.jdbc.driver.OracleCallableStatement
In general, parameter values remain in force for repeated use of a Statement.
public synchronized void registerOutParameter(int paramIndex, int sqlType, String sqlName) throws SQLException
public synchronized void registerOutParameter(int paramIndex, int sqlType, int scale, int maxLength) throws SQLException
public synchronized void setExecuteBatch(int nrows) throws SQLException
Oracle-style batching is not supported for a callable statement. This method always sets the batch value to 1.
public synchronized int sendBatch() throws SQLException
Oracle-style batching is not supported for a callable statement. This method simply returns the number of valid rows.
public void registerOutParameter(int paramIndex, int sqlType) throws SQLException
public void registerOutParameter(int paramIndex, int sqlType, int scale) throws SQLException
public boolean wasNull() throws SQLException
public String getString(int parameterIndex) throws SQLException
public Datum getOracleObject(int parameterIndex) throws SQLException
public ROWID getROWID(int parameterIndex) throws SQLException
public NUMBER getNUMBER(int parameterIndex) throws SQLException
public DATE getDATE(int parameterIndex) throws SQLException
public REF getREF(int parameterIndex) throws SQLException
public ARRAY getARRAY(int parameterIndex) throws SQLException
public STRUCT getSTRUCT(int parameterIndex) throws SQLException
public CHAR getCHAR(int parameterIndex) throws SQLException
public RAW getRAW(int parameterIndex) throws SQLException
public BLOB getBLOB(int parameterIndex) throws SQLException
public CLOB getCLOB(int parameterIndex) throws SQLException
public BFILE getBFILE(int parameterIndex) throws SQLException
public boolean getBoolean(int parameterIndex) throws SQLException
public byte getByte(int parameterIndex) throws SQLException
public short getShort(int parameterIndex) throws SQLException
public int getInt(int parameterIndex) throws SQLException
public long getLong(int parameterIndex) throws SQLException
public float getFloat(int parameterIndex) throws SQLException
public double getDouble(int parameterIndex) throws SQLException
public BigDecimal getBigDecimal(int parameterIndex, int scale) throws SQLException
public byte[] getBytes(int parameterIndex) throws SQLException
public Date getDate(int parameterIndex) throws SQLException
public Time getTime(int parameterIndex) throws SQLException
public Timestamp getTimestamp(int parameterIndex) throws SQLException
public InputStream getAsciiStream(int parameterIndex) throws SQLException
public InputStream getUnicodeStream(int parameterIndex) throws SQLException
public InputStream getBinaryStream(int parameterIndex) throws SQLException
public Object getObject(int parameterIndex) throws SQLException
public Object getCustomDatum(int parameterIndex, CustomDatumFactory factory) throws SQLException
public ResultSet getCursor(int parameterIndex) throws SQLException
public synchronized void clearParameters() throws SQLException
In general, parameter values remain in force for repeated use of a Statement.
public Object getObject(int parameterIndex, Dictionary map) throws SQLException
public Ref getRef(int parameterIndex) throws SQLException
public Blob getBlob(int parameterIndex) throws SQLException
public Clob getClob(int parameterIndex) throws SQLException
public Array getArray(int parameterIndex) throws SQLException
public BigDecimal getBigDecimal(int parameterIndex) throws SQLException
public Date getDate(int parameterIndex, Calendar cal) throws SQLException
public Time getTime(int parameterIndex, Calendar cal) throws SQLException
public Timestamp getTimestamp(int parameterIndex, Calendar cal) throws SQLException
public void addBatch() throws SQLException
All Packages Class Hierarchy This Package Previous Next Index