Top   Module   Use   Manual   Index 
 INCLUDED SERVICES | EXPORTED INTERFACES | PROPERTIES' SUMMARY | PROPERTIES' DETAILS 

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

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.

Properties' Summary

IsBookmarkable returns if the resultset supports bookmark navigation.
CanUpdateInsertedRows [ OPTIONAL ]
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

Properties' Details

IsBookmarkable
 
[ readonly ] boolean IsBookmarkable;
Description
returns if the resultset supports bookmark navigation.
CanUpdateInsertedRows
 
[ readonly ] boolean CanUpdateInsertedRows;
[ OPTIONAL ]
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