1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 module com
{ module sun
{ module star
{ module sdbcx
{
22 published
interface XRowLocate
;
23 published
interface XDeleteRows
;
26 /** extends the SDBC ResultSet by the possibility of bookmark positioning, canceling
27 the positioning, and updating of rows.
29 published service ResultSet
31 service com
::sun
::star
::sdbc
::ResultSet
;
34 /** could be used for canceling the execution of SQL statements if both
35 the DBMS and the driver support aborting of navigation commands.
36 The implementation is optional.
38 [optional] interface com
::sun
::star
::util
::XCancellable
;
41 /** is the interface for navigating on the result set by unique bookmarks.
46 /** is the interface for deleting more than one row, identified by its bookmark.
47 The implementation is optional.
49 [optional] interface XDeleteRows
;
52 /** returns if the result set supports bookmark navigation.
54 [readonly, property
] boolean IsBookmarkable
;
57 /** returns whether the result set supports updating of newly inserted rows.
58 This may not work, as the result set may contain automatic generated data
59 which is used as key information.
61 [optional, readonly, property
] boolean CanUpdateInsertedRows
;
67 /*===========================================================================
68 ===========================================================================*/
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */