Methods' Summary
|
writeString |
writes the next attribute to the stream as a string.
|
writeBoolean |
writes the next attribute to the stream as boolean.
|
writeByte |
writes the next attribute to the stream as byte.
|
writeShort |
writes the next attribute to the stream as short.
|
writeInt |
writes the next attribute to the stream as long.
|
writeLong |
writes the next attribute to the stream as hyper.
|
writeFloat |
writes the next attribute to the stream as float.
|
writeDouble |
writes the next attribute to the stream as double.
|
writeBytes |
writes the next attribute to the stream as byte sequence.
|
writeDate |
writes the next attribute to the stream as a date.
|
writeTime |
writes the next attribute to the stream as a time.
|
writeTimestamp |
writes the next attribute to the stream as a datetime.
|
writeBinaryStream |
writes the next attribute to the stream as a stream of uninterpreted
bytes.
|
writeCharacterStream |
writes the next attribute to the stream as a stream of unicode string.
|
writeObject |
writes to the stream the data contained in the given
XSQLData object.
|
writeRef |
writes a REF(<structured-type>) to the stream.
|
writeBlob |
writes a BLOB to the stream.
|
writeClob |
writes a CLOB to the stream.
|
writeStruct |
writes a structured-type to the stream.
|
writeArray |
writes an array to the stream.
|
Methods' Details
|
- writeString
-  
- void
writeString(
-
- raises ( com::sun::star::sdbc::SQLException );
- Description
- writes the next attribute to the stream as a string.
- Parameter x
-
the value to pass to the database.
- Throws
- SQLException
if a database access error occurs.
|
- writeBoolean
-  
- void
writeBoolean(
-
- raises ( com::sun::star::sdbc::SQLException );
- Description
- writes the next attribute to the stream as boolean.
- Parameter x
-
the value to pass to the database.
- Throws
- SQLException
if a database access error occurs.
|
- writeByte
-  
- void
writeByte(
-
- raises ( com::sun::star::sdbc::SQLException );
- Description
- writes the next attribute to the stream as byte.
- Parameter x
-
the value to pass to the database.
- Throws
- SQLException
if a database access error occurs.
|
- writeShort
-  
- void
writeShort(
-
- raises ( com::sun::star::sdbc::SQLException );
- Description
- writes the next attribute to the stream as short.
- Parameter x
-
the value to pass to the database.
- Throws
- SQLException
if a database access error occurs.
|
- writeInt
-  
- void
writeInt(
-
- raises ( com::sun::star::sdbc::SQLException );
- Description
- writes the next attribute to the stream as long.
- Parameter x
-
the value to pass to the database.
- Throws
- SQLException
if a database access error occurs.
|
- writeLong
-  
- void
writeLong(
-
- raises ( com::sun::star::sdbc::SQLException );
- Description
- writes the next attribute to the stream as hyper.
- Parameter x
-
the value to pass to the database.
- Throws
- SQLException
if a database access error occurs.
|
- writeFloat
-  
- void
writeFloat(
-
- raises ( com::sun::star::sdbc::SQLException );
- Description
- writes the next attribute to the stream as float.
- Parameter x
-
the value to pass to the database.
- Throws
- SQLException
if a database access error occurs.
|
- writeDouble
-  
- void
writeDouble(
-
- raises ( com::sun::star::sdbc::SQLException );
- Description
- writes the next attribute to the stream as double.
- Parameter x
-
the value to pass to the database.
- Throws
- SQLException
if a database access error occurs.
|
- writeBytes
-  
- void
writeBytes(
[ in ] sequence< byte > |
x ) |
- raises ( com::sun::star::sdbc::SQLException );
- Description
- writes the next attribute to the stream as byte sequence.
- Parameter x
-
the value to pass to the database.
- Throws
- SQLException
if a database access error occurs.
|
- writeDate
-  
- void
writeDate(
-
- raises ( com::sun::star::sdbc::SQLException );
- Description
- writes the next attribute to the stream as a date.
- Parameter x
-
the value to pass to the database.
- Throws
- SQLException
if a database access error occurs.
|
- writeTime
-  
- void
writeTime(
-
- raises ( com::sun::star::sdbc::SQLException );
- Description
- writes the next attribute to the stream as a time.
- Parameter x
-
the value to pass to the database.
- Throws
- SQLException
if a database access error occurs.
|
- writeTimestamp
-  
- void
writeTimestamp(
-
- raises ( com::sun::star::sdbc::SQLException );
- Description
- writes the next attribute to the stream as a datetime.
- Parameter x
-
the value to pass to the database.
- Throws
- SQLException
if a database access error occurs.
|
- writeBinaryStream
-  
- void
writeBinaryStream(
-
- raises ( com::sun::star::sdbc::SQLException );
- Description
- writes the next attribute to the stream as a stream of uninterpreted
bytes.
- Parameter x
-
the value to pass to the database.
- Throws
- SQLException
if a database access error occurs.
|
- writeCharacterStream
-  
- void
writeCharacterStream(
-
- raises ( com::sun::star::sdbc::SQLException );
- Description
- writes the next attribute to the stream as a stream of unicode string.
- Parameter x
-
the value to pass to the database.
- Throws
- SQLException
if a database access error occurs.
|
- writeObject
-  
- void
writeObject(
-
- raises ( com::sun::star::sdbc::SQLException );
- Description
- writes to the stream the data contained in the given
XSQLData object.
When the
XSQLData
object is
NULL
, this method writes an SQL NULL to the stream.
Otherwise, it calls the
XSQLData::writeSQL()
method of the given object, which
writes the object's attributes to the stream.
The implementation of the method
XSQLData::writeSQL()
calls the appropriate
XSQLOutput.writeXXX
method(s) for writing each of the object's attributes in order.
The attributes must be read from an
XSQLInput
input stream and written to an
XSQLOutput
output stream in the same order in which they were
listed in the SQL definition of the user-defined type.
- Parameter x
-
the value to pass to the database.
- Throws
- SQLException
if a database access error occurs.
|
- writeRef
-  
- void
writeRef(
-
- raises ( com::sun::star::sdbc::SQLException );
- Description
- writes a REF(&lt;structured-type&gt;) to the stream.
- Parameter x
-
the value to pass to the database.
- Throws
- SQLException
if a database access error occurs.
|
- writeBlob
-  
- void
writeBlob(
-
- raises ( com::sun::star::sdbc::SQLException );
- Description
- writes a BLOB to the stream.
- Parameter x
-
the value to pass to the database.
- Throws
- SQLException
if a database access error occurs.
|
- writeClob
-  
- void
writeClob(
-
- raises ( com::sun::star::sdbc::SQLException );
- Description
- writes a CLOB to the stream.
- Parameter x
-
the value to pass to the database.
- Throws
- SQLException
if a database access error occurs.
|
- writeStruct
-  
- void
writeStruct(
-
- raises ( com::sun::star::sdbc::SQLException );
- Description
- writes a structured-type to the stream.
- Parameter x
-
the value to pass to the database.
- Throws
- SQLException
if a database access error occurs.
|
- writeArray
-  
- void
writeArray(
-
- raises ( com::sun::star::sdbc::SQLException );
- Description
- writes an array to the stream.
- Parameter x
-
the value to pass to the database.
- Throws
- SQLException
if a database access error occurs.
|
Copyright 2002 Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, CA 94303 USA.