service ResultSet in module com::sun::star::sdbcx::

(Global Index)

Syntax

service ResultSet;

Description

extends the SDBC ResultSet by the possibility of bookmark positioning, cancelling the positioning, and updating of rows.

Included Services

com::sun::star::sdbc::ResultSet

Description

provides access to a table of data. A ResultSet object is usually generated by executing a Statement.


Exported Interfaces

com::sun::star::util::XCancellable [ OPTIONAL ]

Description

could be used for cancelling the execution of SQL statements if both the DBMS and the driver support aborting of navigation commands. The implementation is optional.


com::sun::star::sdbcx::XRowLocate

Description

is the interface for navigating on the result set by unique bookmarks.


com::sun::star::sdbcx::XDeleteRows [ OPTIONAL ]

Description

is the interface for deleting more than one row, identified by it's bookmark. The implementation is optional.


Property Summary

IsBookmarkable returns if the resultset supports bookmark navigation.

CanUpdateInsertedRows returns whether the resultset supports updating of newly inserted rows. This may not work, as the result set may contain automatic generated data which is used as key information. @optional

Property Details



IsBookmarkable

Syntax

[readonly] boolean IsBookmarkable;

Description

returns if the resultset supports bookmark navigation.


CanUpdateInsertedRows [ O P T I O N A L ]

Syntax

[readonly] boolean CanUpdateInsertedRows;

Description

returns whether the resultset supports updating of newly inserted rows. This may not work, as the result set may contain automatic generated data which is used as key information. @optional

Top of Page