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

Method Index

 o writeArray(Array)
Write an array to the stream.
 o writeArray(ARRAY)
Oracle extension.ARRAY Write an oracle.sql.
 o writeAsciiStream(InputStream)
Write the next attribute to the stream as a stream of ASCII characters.
 o writeBfile(BFILE)
Oracle extension.
 o writeBigDecimal(BigDecimal)
Write the next attribute to the stream as a java.math.BigDecimal object.
 o writeBinaryStream(InputStream)
Write the next attribute to the stream as a stream of uninterpreted bytes.
 o writeBlob(BLOB)
Oracle extension.
 o writeBlob(Blob)
Write a BLOB to the stream.
 o writeBoolean(boolean)
Write the next attribute to the stream as a Java boolean.
 o writeByte(byte)
Write the next attribute to the stream as a Java byte.
 o writeBytes(byte[])
Write the next attribute to the stream as an array of bytes.
 o writeCHAR(CHAR)
Oracle extension.
 o writeCharacterStream(Reader)
Write the next attribute to the stream as a stream of Unicode characters.
 o writeClob(CLOB)
Oracle extension.
 o writeClob(Clob)
Write a CLOB to the stream.
 o writeDate(Date)
Write the next attribute to the stream as a java.sql.Date object.
 o writeDATE(DATE)
Oracle extension.
 o writeDouble(double)
Write the next attribute to the stream as a Java double.
 o writeFloat(float)
Write the next attribute to the stream as a Java float.
 o writeInt(int)
Write the next attribute to the stream as a Java int.
 o writeLong(long)
Write the next attribute to the stream as a Java long.
 o writeNUMBER(NUMBER)
Oracle extension.
 o writeObject(Object)
Write the next attribute to the stream as a Java object.
 o writeObject(SQLData)
Write to the stream the data contained in the given object.
 o writeOracleObject(Datum)
Oracle extension.
 o writeRAW(RAW)
Oracle extension.
 o writeRef(REF)
Oracle extension.
 o writeRef(Ref)
Write a REF(<structured-type>) to the stream.
 o writeROWID(ROWID)
Oracle extension.
 o writeShort(short)
Write the next attribute to the stream as a Java short.
 o writeString(String)
Write the next attribute to the stream as a Java String.
 o writeStruct(Struct)
Write a structured-type to the stream.
 o writeStruct(STRUCT)
Oracle extension.
 o writeTime(Time)
Write the next attribute to the stream as a java.sql.Time object.
 o writeTimestamp(Timestamp)
Write the next attribute to the stream as a java.sql.Timestamp object.

Methods

 o 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.
 o 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.
 o 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.
 o 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.
 o 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.
 o 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.
 o 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.
 o 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.
 o 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.
 o 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.
 o 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.
 o 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.
 o 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.
 o 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.
 o 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.
 o 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.
 o 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
 o 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.
 o 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
 o writeBlob
 public void writeBlob(Blob x) throws SQLException
Write a BLOB to the stream.

Parameters:
x - an object representing a BLOB
 o writeClob
 public void writeClob(Clob x) throws SQLException
Write a CLOB to the stream.

Parameters:
x - an object representing a CLOB
 o 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
 o writeArray
 public void writeArray(Array x) throws SQLException
Write an array to the stream.

Parameters:
x - an object representing an SQL array
 o 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
 o 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
 o 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
 o 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
 o 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
 o 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
 o 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
 o 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
 o 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
 o 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
 o 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
 o 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