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( |
[in] string |
x ) |
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( |
[in] boolean |
x ) |
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
- 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
- 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
- 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
- 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
- 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( |
[in] double |
x ) |
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
- 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
- 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
- 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
- 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
- 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
- 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
::com::sun::star::sdbc::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
::com::sun::star::sdbc::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
- Description
- writes a REF(<structured-type>) to the stream.
- Parameter x
-
the value to pass to the database.
- Throws
- SQLException
if a database access error occurs.
|
|
writeBlob
- 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
- 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
- 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
- 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 © 2003 Sun Microsystems, Inc.