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 #ifndef CACHEDROWSET_HXX
21 #define CACHEDROWSET_HXX
23 #include <com/sun/star/sdbc/XResultSet.hpp>
24 #include <com/sun/star/sdbc/XConnection.hpp>
26 #include <comphelper/componentcontext.hxx>
27 #include <unotools/sharedunocomponent.hxx>
31 //........................................................................
34 //........................................................................
36 struct CachedRowSet_Data
;
37 //====================================================================
39 //====================================================================
40 /** caches a result set obtained from a SQL statement
45 CachedRowSet( const ::comphelper::ComponentContext
& _rContext
);
49 /** executes the statement
52 the result set produced by the statement. The caller takes ownership of the
55 @throws ::com::sun::star::sdbc::SQLException
56 if such an exception is thrown when executing the statement
58 ::com::sun::star::uno::Reference
< ::com::sun::star::sdbc::XResultSet
>
61 /// determines whether the row set properties are dirty, i.e. have changed since the last call to execute
64 /// disposes the instance and frees all associated resources
67 /** sets the command of a query as command to be executed
69 A connection must have been set before.
73 void setCommandFromQuery ( const OUString
& _rQueryName
);
75 void setCommand ( const OUString
& _rCommand
);
76 void setEscapeProcessing ( const sal_Bool _bEscapeProcessing
);
77 void setConnection ( const ::com::sun::star::uno::Reference
< ::com::sun::star::sdbc::XConnection
>& _rxConnection
);
80 ::std::auto_ptr
< CachedRowSet_Data
> m_pData
;
83 //........................................................................
85 //........................................................................
87 #endif // CACHEDROWSET_HXX
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */