bump product version to 5.0.4.1
[LibreOffice.git] / forms / source / component / cachedrowset.hxx
blobebbe73a48da147ba7d6050156768827b72845823
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 INCLUDED_FORMS_SOURCE_COMPONENT_CACHEDROWSET_HXX
21 #define INCLUDED_FORMS_SOURCE_COMPONENT_CACHEDROWSET_HXX
23 #include <com/sun/star/sdbc/XResultSet.hpp>
24 #include <com/sun/star/sdbc/XConnection.hpp>
26 #include <unotools/sharedunocomponent.hxx>
28 #include <memory>
31 namespace frm
34 struct CachedRowSet_Data;
36 /// caches a result set obtained from a SQL statement
37 class CachedRowSet
39 public:
40 CachedRowSet();
41 ~CachedRowSet();
43 public:
44 /** executes the statement
46 @return
47 the result set produced by the statement. The caller takes ownership of the
48 given object.
50 @throws ::com::sun::star::sdbc::SQLException
51 if such an exception is thrown when executing the statement
53 ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSet >
54 execute();
56 /// determines whether the row set properties are dirty, i.e. have changed since the last call to execute
57 bool isDirty() const;
59 /// disposes the instance and frees all associated resources
60 void dispose();
62 /** sets the command of a query as command to be executed
64 A connection must have been set before.
66 @throws Exception
68 void setCommandFromQuery ( const OUString& _rQueryName );
70 void setCommand ( const OUString& _rCommand );
71 void setEscapeProcessing ( const bool _bEscapeProcessing );
72 void setConnection ( const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection >& _rxConnection );
74 private:
75 ::std::unique_ptr< CachedRowSet_Data > m_pData;
79 } // namespace frm
82 #endif // INCLUDED_FORMS_SOURCE_COMPONENT_CACHEDROWSET_HXX
84 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */