All Packages Class Hierarchy This Package Previous Next Index
Class oracle.sql.OracleSQLOutput
java.lang.Object
|
+----oracle.sql.OracleSQLOutput
- public class OracleSQLOutput
- extends Object
- implements SQLOutput
-
writeArray(Array)
- Write an array to the stream.
-
writeArray(ARRAY)
- Oracle extension.ARRAY
Write an oracle.sql.
-
writeAsciiStream(InputStream)
- Write the next attribute to the stream as a stream of ASCII characters.
-
writeBfile(BFILE)
- Oracle extension.
-
writeBigDecimal(BigDecimal)
- Write the next attribute to the stream as a java.math.BigDecimal object.
-
writeBinaryStream(InputStream)
- Write the next attribute to the stream as a stream of uninterpreted
bytes.
-
writeBlob(BLOB)
- Oracle extension.
-
writeBlob(Blob)
- Write a BLOB to the stream.
-
writeBoolean(boolean)
- Write the next attribute to the stream as a Java boolean.
-
writeByte(byte)
- Write the next attribute to the stream as a Java byte.
-
writeBytes(byte[])
- Write the next attribute to the stream as an array of bytes.
-
writeCHAR(CHAR)
- Oracle extension.
-
writeCharacterStream(Reader)
- Write the next attribute to the stream as a stream of Unicode characters.
-
writeClob(CLOB)
- Oracle extension.
-
writeClob(Clob)
- Write a CLOB to the stream.
-
writeDate(Date)
- Write the next attribute to the stream as a java.sql.Date object.
-
writeDATE(DATE)
- Oracle extension.
-
writeDouble(double)
- Write the next attribute to the stream as a Java double.
-
writeFloat(float)
- Write the next attribute to the stream as a Java float.
-
writeInt(int)
- Write the next attribute to the stream as a Java int.
-
writeLong(long)
- Write the next attribute to the stream as a Java long.
-
writeNUMBER(NUMBER)
- Oracle extension.
-
writeObject(Object)
- Write the next attribute to the stream as a Java object.
-
writeObject(SQLData)
- Write to the stream the data contained in the given object.
-
writeOracleObject(Datum)
- Oracle extension.
-
writeRAW(RAW)
- Oracle extension.
-
writeRef(REF)
- Oracle extension.
-
writeRef(Ref)
- Write a REF(<structured-type>) to the stream.
-
writeROWID(ROWID)
- Oracle extension.
-
writeShort(short)
- Write the next attribute to the stream as a Java short.
-
writeString(String)
- Write the next attribute to the stream as a Java String.
-
writeStruct(Struct)
- Write a structured-type to the stream.
-
writeStruct(STRUCT)
- Oracle extension.
-
writeTime(Time)
- Write the next attribute to the stream as a java.sql.Time object.
-
writeTimestamp(Timestamp)
- Write the next attribute to the stream as a java.sql.Timestamp object.
writeString
public void writeString(String x) throws SQLException
- Write the next attribute to the stream as a Java String.
- Parameters:
- x - the value to pass to the database.
writeBoolean
public void writeBoolean(boolean x) throws SQLException
- Write the next attribute to the stream as a Java boolean.
- Parameters:
- x - the value to pass to the database.
writeByte
public void writeByte(byte x) throws SQLException
- Write the next attribute to the stream as a Java byte.
- Parameters:
- x - the value to pass to the database.
writeShort
public void writeShort(short x) throws SQLException
- Write the next attribute to the stream as a Java short.
- Parameters:
- x - the value to pass to the database.
writeInt
public void writeInt(int x) throws SQLException
- Write the next attribute to the stream as a Java int.
- Parameters:
- x - the value to pass to the database.
writeLong
public void writeLong(long x) throws SQLException
- Write the next attribute to the stream as a Java long.
- Parameters:
- x - the value to pass to the database.
writeFloat
public void writeFloat(float x) throws SQLException
- Write the next attribute to the stream as a Java float.
- Parameters:
- x - the value to pass to the database.
writeDouble
public void writeDouble(double x) throws SQLException
- Write the next attribute to the stream as a Java double.
- Parameters:
- x - the value to pass to the database.
writeBigDecimal
public void writeBigDecimal(BigDecimal x) throws SQLException
- Write the next attribute to the stream as a java.math.BigDecimal object.
- Parameters:
- x - the value to pass to the database.
writeBytes
public void writeBytes(byte x[]) throws SQLException
- Write the next attribute to the stream as an array of bytes.
- Parameters:
- x - the value to pass to the database.
writeDate
public void writeDate(Date x) throws SQLException
- Write the next attribute to the stream as a java.sql.Date object.
- Parameters:
- x - the value to pass to the database.
writeTime
public void writeTime(Time x) throws SQLException
- Write the next attribute to the stream as a java.sql.Time object.
- Parameters:
- x - the value to pass to the database.
writeTimestamp
public void writeTimestamp(Timestamp x) throws SQLException
- Write the next attribute to the stream as a java.sql.Timestamp object.
- Parameters:
- x - the value to pass to the database.
writeCharacterStream
public void writeCharacterStream(Reader x) throws SQLException
- Write the next attribute to the stream as a stream of Unicode characters.
- Parameters:
- x - the value to pass to the database.
writeAsciiStream
public void writeAsciiStream(InputStream x) throws SQLException
- Write the next attribute to the stream as a stream of ASCII characters.
- Parameters:
- x - the value to pass to the database.
writeBinaryStream
public void writeBinaryStream(InputStream x) throws SQLException
- Write the next attribute to the stream as a stream of uninterpreted
bytes.
- Parameters:
- x - the value to pass to the database.
writeObject
public void writeObject(SQLData x) throws SQLException
- Write to the stream the data contained in the given object.
When @x is null, the method writes an SQL NULL to the stream.
Otherwise, it calls the SQLData.writeSQL method of the @x, which
writes to the stream using the protocol described for
SQLData.writeSQL.
- Parameters:
- x - the object representing data of an SQL structured or
distinct type
writeObject
public void writeObject(Object x) throws SQLException
- Write the next attribute to the stream as a Java object.
The driver handles the necessary conversion.
- Parameters:
- x - the value to pass to the database.
writeRef
public void writeRef(Ref x) throws SQLException
- Write a REF(<structured-type>) to the stream.
- Parameters:
- x - an object representing data of an SQL REF Type
writeBlob
public void writeBlob(Blob x) throws SQLException
- Write a BLOB to the stream.
- Parameters:
- x - an object representing a BLOB
writeClob
public void writeClob(Clob x) throws SQLException
- Write a CLOB to the stream.
- Parameters:
- x - an object representing a CLOB
writeStruct
public void writeStruct(Struct x) throws SQLException
- Write a structured-type to the stream.
- Parameters:
- x - an object representing data of a Structured Type
writeArray
public void writeArray(Array x) throws SQLException
- Write an array to the stream.
- Parameters:
- x - an object representing an SQL array
writeOracleObject
public void writeOracleObject(Datum x) throws SQLException
- Oracle extension.
Write an oracle.sql.Datum to the stream.
- Parameters:
- x - an object representing an SQL array
writeRef
public void writeRef(REF x) throws SQLException
- Oracle extension.
Write an oracle.sql.REF to the stream.
- Parameters:
- x - an object representing an SQL array
writeBlob
public void writeBlob(BLOB x) throws SQLException
- Oracle extension.
Write an oracle.sql.BLOB to the stream.
- Parameters:
- x - an object representing an SQL array
writeBfile
public void writeBfile(BFILE x) throws SQLException
- Oracle extension.
Write an oracle.sql.BFILE to the stream.
- Parameters:
- x - an object representing an SQL array
writeClob
public void writeClob(CLOB x) throws SQLException
- Oracle extension.
Write an oracle.sql.CLOB to the stream.
- Parameters:
- x - an object representing an SQL array
writeStruct
public void writeStruct(STRUCT x) throws SQLException
- Oracle extension.
Write an oracle.sql.STRUCT to the stream.
- Parameters:
- x - an object representing an SQL array
writeArray
public void writeArray(ARRAY x) throws SQLException
- Oracle extension.ARRAY
Write an oracle.sql. to the stream.
- Parameters:
- x - an object representing an SQL array
writeNUMBER
public void writeNUMBER(NUMBER x) throws SQLException
- Oracle extension.
Write an oracle.sql.NUMBER to the stream.
- Parameters:
- x - an object representing an SQL array
writeCHAR
public void writeCHAR(CHAR x) throws SQLException
- Oracle extension.
Write an oracle.sql.CHAR to the stream.
- Parameters:
- x - an object representing an SQL array
writeDATE
public void writeDATE(DATE x) throws SQLException
- Oracle extension.
Write an oracle.sql.DATE to the stream.
- Parameters:
- x - an object representing an SQL array
writeRAW
public void writeRAW(RAW x) throws SQLException
- Oracle extension.
Write an oracle.sql.RAW to the stream.
- Parameters:
- x - an object representing an SQL array
writeROWID
public void writeROWID(ROWID x) throws SQLException
- Oracle extension.
Write an oracle.sql.ROWID to the stream.
- Parameters:
- x - an object representing an SQL array
All Packages Class Hierarchy This Package Previous Next Index