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 .
19 #ifndef __com_sun_star_sdbc_XRowSet_idl__
20 #define __com_sun_star_sdbc_XRowSet_idl__
22 #include
<com
/sun
/star
/sdbc
/XResultSet.idl
>
24 module com
{ module sun
{ module star
{ module sdbc
{
26 published
interface XRowSetListener
;
27 published
interface XConnection
;
30 /** enhances the functionality of a result set. It allows implementation of
31 a special behavior for a result set and notifies an application on
32 certain row set events such as a change in its value.
37 The XRowSet interface is unique in that it is intended to be
38 a software layer on top of an SDBC driver. Implementations of the
39 RowSet interface can be provided by anyone.
42 published
interface XRowSet
: XResultSet
45 /** populates a row set with data. The description of the data source and
46 other important information for filling the row set with data.
49 if a database access error occurs.
51 void execute
() raises
(SQLException
);
53 /** adds the specified listener to receive the events "cursorMoved",
54 "rowChanged", and "rowSetChanged".
56 the listener which should be registered
58 void addRowSetListener
([in]XRowSetListener listener
);
60 /** removes the specified listener.
62 the listener which should be registered
64 void removeRowSetListener
([in]XRowSetListener listener
);
70 /*===========================================================================
71 ===========================================================================*/
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */