Methods' Details |
updateNull
- Description
- gives a nullable column a null value.
- Throws
- com::sun::star::sdbc::SQLException
if a database access error occurs.
|
|
updateBoolean
void |
updateBoolean( |
[in] boolean |
x ) |
raises( |
::com::sun::star::sdbc::SQLException ); |
- Description
- updates a column with a boolean value.
- Parameter x
- the new column value
- Throws
- com::sun::star::sdbc::SQLException
if a database access error occurs.
|
|
updateByte
- Description
- updates a column with a byte value.
- Parameter x
- the new column value
- Throws
- com::sun::star::sdbc::SQLException
if a database access error occurs.
|
|
updateShort
void |
updateShort( |
[in] short |
x ) |
raises( |
::com::sun::star::sdbc::SQLException ); |
- Description
- updates a column with a short value.
- Parameter x
- the new column value
- Throws
- com::sun::star::sdbc::SQLException
if a database access error occurs.
|
|
updateInt
- Description
- updates a column with a long value.
- Parameter x
- the new column value
- Throws
- com::sun::star::sdbc::SQLException
if a database access error occurs.
|
|
updateLong
- Description
- updates a column with a hyper value.
- Parameter x
- the new column value
- Throws
- com::sun::star::sdbc::SQLException
if a database access error occurs.
|
|
updateFloat
void |
updateFloat( |
[in] float |
x ) |
raises( |
::com::sun::star::sdbc::SQLException ); |
- Description
- updates a column with a float value.
- Parameter x
- the new column value
- Throws
- com::sun::star::sdbc::SQLException
if a database access error occurs.
|
|
updateDouble
void |
updateDouble( |
[in] double |
x ) |
raises( |
::com::sun::star::sdbc::SQLException ); |
- Description
- updates a column with a double value.
- Parameter x
- the new column value
- Throws
- com::sun::star::sdbc::SQLException
if a database access error occurs.
|
|
updateString
void |
updateString( |
[in] string |
x ) |
raises( |
::com::sun::star::sdbc::SQLException ); |
- Description
- updates a column with a string value.
- Parameter x
- the new column value
- Throws
- com::sun::star::sdbc::SQLException
if a database access error occurs.
|
|
updateBytes
void |
updateBytes( |
[in] sequence< byte > |
x ) |
raises( |
::com::sun::star::sdbc::SQLException ); |
- Description
- updates a column with a byte array value.
- Parameter x
- the new column value
- Throws
- com::sun::star::sdbc::SQLException
if a database access error occurs.
|
|
updateDate
- Description
- updates a column with a Date value.
- Parameter x
- the new column value
- Throws
- com::sun::star::sdbc::SQLException
if a database access error occurs.
|
|
updateTime
- Description
- updates a column with a Time value.
- Parameter x
- the new column value
- Throws
- com::sun::star::sdbc::SQLException
if a database access error occurs.
|
|
updateTimestamp
- Description
- updates a column with a Timestamp value.
- Parameter x
- the new column value
- Throws
- com::sun::star::sdbc::SQLException
if a database access error occurs.
|
|
updateBinaryStream
- Description
- updates a column with a stream value.
- Parameter x
- the new column value
- Throws
- com::sun::star::sdbc::SQLException
if a database access error occurs.
|
|
updateCharacterStream
- Description
- updates a column with a stream value.
- Parameter x
- the new column value
- Parameter length
- the length of the stream
- Throws
- com::sun::star::sdbc::SQLException
if a database access error occurs.
|
|
updateObject
- Description
- updates a column with an Object value.
- Parameter x
- the new column value
- Throws
- com::sun::star::sdbc::SQLException
if a database access error occurs.
|
|
updateNumericObject
void |
updateNumericObject( |
[in] any |
x, |
| [in] long |
scale ) |
raises( |
::com::sun::star::sdbc::SQLException ); |
- Description
- updates a column with an Object value.
- Parameter x
- the new column value
- Parameter scale
- the scale
- Throws
- com::sun::star::sdbc::SQLException
if a database access error occurs.
|
|