LibreOffice
LibreOffice 24.2 SDK API Reference
XResultSet.idl
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
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/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
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 .
18  */
19 
20  module com { module sun { module star { module sdbc {
21 
22  published interface XStatement;
23 
24 
38 {
39 
59  boolean next() raises (SQLException);
60 
68  boolean isBeforeFirst() raises (SQLException);
69 
77  boolean isAfterLast() raises (SQLException);
78 
85  boolean isFirst() raises (SQLException);
86 
104  boolean isLast() raises (SQLException);
105 
111  void beforeFirst() raises (SQLException);
112 
118  void afterLast() raises (SQLException);
119 
126  boolean first() raises (SQLException);
127 
134  boolean last() raises (SQLException);
135 
143  long getRow() raises (SQLException);
144 
177  boolean absolute([in] long row ) raises (SQLException);
178 
206  boolean relative([in]long rows) raises (SQLException);
207 
225  boolean previous() raises (SQLException);
226 
253  void refreshRow() raises (SQLException);
254 
262  boolean rowUpdated() raises (SQLException);
263 
271  boolean rowInserted() raises (SQLException);
272 
282  boolean rowDeleted() raises (SQLException);
283 
294  com::sun::star::uno::XInterface getStatement() raises (SQLException);
295 };
296 
297 
298 }; }; }; };
299 
300 /*===========================================================================
301 ===========================================================================*/
302 
303 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Definition: Ambiguous.idl:20
provides the navigation on a table of data.
Definition: XResultSet.idl:37
is an exception that provides information on a database access error.
Definition: SQLException.idl:40
base interface of all UNO interfaces
Definition: XInterface.idl:45