|
Syntax
- void updateNull
(
- long columnIndex )
- raises ( com::sun::star::sdbc::SQLException );
Description
gives a nullable column a null value.
Parameter columnIndex
-
the position of the column
Throws
- SQLException
if a database access error occurs.
Syntax
- void updateBoolean
(
- long columnIndex,
- boolean x )
- raises ( com::sun::star::sdbc::SQLException );
Description
updates a column with a boolean value.
Parameter columnIndex
-
the position of the column
Parameter x
-
the new column value
Throws
- SQLException
if a database access error occurs.
Syntax
- void updateByte
(
- long columnIndex,
- byte x )
- raises ( com::sun::star::sdbc::SQLException );
Description
updates a column with a byte value.
Parameter columnIndex
-
the position of the column
Parameter x
-
the new column value
Throws
- SQLException
if a database access error occurs.
Syntax
- void updateShort
(
- long columnIndex,
- short x )
- raises ( com::sun::star::sdbc::SQLException );
Description
updates a column with a short value.
Parameter columnIndex
-
the position of the column
Parameter x
-
the new column value
Throws
- SQLException
if a database access error occurs.
Syntax
- void updateInt
(
- long columnIndex,
- long x )
- raises ( com::sun::star::sdbc::SQLException );
Description
updates a column with an long value.
Parameter columnIndex
-
the position of the column
Parameter x
-
the new column value
Throws
- SQLException
if a database access error occurs.
Syntax
- void updateLong
(
- long columnIndex,
- hyper x )
- raises ( com::sun::star::sdbc::SQLException );
Description
updates a column with a hyper value.
Parameter columnIndex
-
the position of the column
Parameter x
-
the new column value
Throws
- SQLException
if a database access error occurs.
Syntax
- void updateFloat
(
- long columnIndex,
- float x )
- raises ( com::sun::star::sdbc::SQLException );
Description
updates a column with a float value.
Parameter columnIndex
-
the position of the column
Parameter x
-
the new column value
Throws
- SQLException
if a database access error occurs.
Syntax
- void updateDouble
(
- long columnIndex,
- double x )
- raises ( com::sun::star::sdbc::SQLException );
Description
updates a column with a double value.
Parameter columnIndex
-
the position of the column
Parameter x
-
the new column value
Throws
- SQLException
if a database access error occurs.
Syntax
- void updateString
(
- long columnIndex,
- string x )
- raises ( com::sun::star::sdbc::SQLException );
Description
updates a column with a string value.
Parameter columnIndex
-
the position of the column
Parameter x
-
the new column value
Throws
- SQLException
if a database access error occurs.
Syntax
- void updateBytes
(
- long columnIndex,
- sequence< byte > x )
- raises ( com::sun::star::sdbc::SQLException );
Description
updates a column with a byte array value.
Parameter columnIndex
-
the position of the column
Parameter x
-
the new column value
Throws
- SQLException
if a database access error occurs.
Syntax
- void updateDate
(
- long columnIndex,
- com::sun::star::util::Date x )
- raises ( com::sun::star::sdbc::SQLException );
Description
updates a column with a date value.
Parameter columnIndex
-
the position of the column
Parameter x
-
the new column value
Throws
- SQLException
if a database access error occurs.
Syntax
- void updateTime
(
- long columnIndex,
- com::sun::star::util::Time x )
- raises ( com::sun::star::sdbc::SQLException );
Description
updates a column with a time value.
Parameter columnIndex
-
the position of the column
Parameter x
-
the new column value
Throws
- SQLException
if a database access error occurs.
Syntax
- void updateTimestamp
(
- long columnIndex,
- com::sun::star::util::DateTime x )
- raises ( com::sun::star::sdbc::SQLException );
Description
updates a column with a timestamp value.
Parameter columnIndex
-
the position of the column
Parameter x
-
the new column value
Throws
- SQLException
if a database access error occurs.
Syntax
- void updateBinaryStream
(
- long columnIndex,
- com::sun::star::io::XInputStream x,
- long length )
- raises ( com::sun::star::sdbc::SQLException );
Description
updates a column with a stream value.
Parameter columnIndex
-
the position of the column
Parameter x
-
the new column value
Parameter length
-
how much data should be read out of the stream
Throws
- SQLException
if a database access error occurs.
Syntax
- void updateCharacterStream
(
- long columnIndex,
- com::sun::star::io::XInputStream x,
- long length )
- raises ( com::sun::star::sdbc::SQLException );
Description
updates a column with a stream value.
Parameter columnIndex
-
the position of the column
Parameter x
-
the new column value
Parameter length
-
how much data should be read out of the stream
Throws
- SQLException
if a database access error occurs.
Syntax
- void updateObject
(
- long columnIndex,
- any x )
- raises ( com::sun::star::sdbc::SQLException );
Description
updates a column with an object value.
Parameter columnIndex
-
the position of the column
Parameter x
-
the new column value
Throws
- SQLException
if a database access error occurs.
Syntax
- void updateNumericObject
(
- long columnIndex,
- any x,
- long scale )
- raises ( com::sun::star::sdbc::SQLException );
Description
updates a column with an object value.
Parameter columnIndex
-
the position of the column
Parameter x
-
the new column value
Parameter scale
-
defines the scale which should be used to write the numeric value
Throws
- SQLException
if a database access error occurs.
|