build fix: no comphelper/profilezone.hxx in this branch
[LibreOffice.git] / mysqlc / source / mysqlc_preparedstatement.hxx
blob511e89e88b06f89682467527061bfaef884a244d
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_MYSQLC_SOURCE_MYSQLC_PREPAREDSTATEMENT_HXX
21 #define INCLUDED_MYSQLC_SOURCE_MYSQLC_PREPAREDSTATEMENT_HXX
22 #include "mysqlc_statement.hxx"
23 #include "mysqlc_resultset.hxx"
25 #include <com/sun/star/sdbc/XPreparedStatement.hpp>
26 #include <com/sun/star/sdbc/XParameters.hpp>
27 #include <com/sun/star/sdbc/XResultSetMetaDataSupplier.hpp>
28 #include <com/sun/star/sdbc/XPreparedBatchExecution.hpp>
29 #include <com/sun/star/io/XInputStream.hpp>
31 #include <cppconn/prepared_statement.h>
33 namespace connectivity
35 namespace mysqlc
37 using ::com::sun::star::uno::Reference;
38 using ::com::sun::star::uno::Any;
39 using ::com::sun::star::uno::Type;
40 using ::com::sun::star::sdbc::SQLException;
41 using ::com::sun::star::uno::RuntimeException;
42 using ::com::sun::star::sdbc::XResultSetMetaData;
44 typedef ::cppu::ImplHelper5< css::sdbc::XPreparedStatement,
45 css::sdbc::XParameters,
46 css::sdbc::XPreparedBatchExecution,
47 css::sdbc::XResultSetMetaDataSupplier,
48 css::lang::XServiceInfo> OPreparedStatement_BASE;
50 class OPreparedStatement : public OCommonStatement,
51 public OPreparedStatement_BASE
53 protected:
54 unsigned int m_paramCount; // number of placeholders
55 Reference< XResultSetMetaData > m_xMetaData;
57 void checkParameterIndex(sal_Int32 parameter);
59 protected:
60 void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, const Any& rValue)
61 throw (css::uno::Exception, std::exception) SAL_OVERRIDE;
62 virtual ~OPreparedStatement();
63 public:
64 virtual rtl::OUString SAL_CALL getImplementationName()
65 throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
67 virtual sal_Bool SAL_CALL supportsService(
68 rtl::OUString const & ServiceName) throw (css::uno::RuntimeException, std::exception)
69 SAL_OVERRIDE;
71 virtual css::uno::Sequence<rtl::OUString> SAL_CALL
72 getSupportedServiceNames() throw (css::uno::RuntimeException, std::exception)
73 SAL_OVERRIDE;
75 OPreparedStatement(OConnection* _pConnection, sql::PreparedStatement * cppPrepStmt);
77 //XInterface
78 Any SAL_CALL queryInterface(const Type & rType) throw(RuntimeException, std::exception) SAL_OVERRIDE;
79 void SAL_CALL acquire() throw() SAL_OVERRIDE;
80 void SAL_CALL release() throw() SAL_OVERRIDE;
82 //XTypeProvider
83 css::uno::Sequence< Type > SAL_CALL getTypes()
84 throw(RuntimeException, std::exception) SAL_OVERRIDE;
86 // XPreparedStatement
87 Reference< css::sdbc::XResultSet > SAL_CALL executeQuery() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
88 sal_Int32 SAL_CALL executeUpdate() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
89 sal_Bool SAL_CALL execute() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
90 Reference< css::sdbc::XConnection > SAL_CALL getConnection() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
92 // XStatement
93 using OCommonStatement::executeQuery;
94 using OCommonStatement::executeUpdate;
95 using OCommonStatement::execute;
97 // XParameters
98 void SAL_CALL setNull(sal_Int32 parameter, sal_Int32 sqlType) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
100 void SAL_CALL setObjectNull(sal_Int32 parameter, sal_Int32 sqlType, const rtl::OUString& typeName)
101 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
103 void SAL_CALL setBoolean(sal_Int32 parameter, sal_Bool x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
105 void SAL_CALL setByte(sal_Int32 parameter, sal_Int8 x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
107 void SAL_CALL setShort(sal_Int32 parameter, sal_Int16 x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
109 void SAL_CALL setInt(sal_Int32 parameter, sal_Int32 x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
111 void SAL_CALL setLong(sal_Int32 parameter, sal_Int64 x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
113 void SAL_CALL setFloat(sal_Int32 parameter, float x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
115 void SAL_CALL setDouble(sal_Int32 parameter, double x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
117 void SAL_CALL setString(sal_Int32 parameter, const rtl::OUString& x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
119 void SAL_CALL setBytes(sal_Int32 parameter, const css::uno::Sequence< sal_Int8 >& x)
120 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
122 void SAL_CALL setDate(sal_Int32 parameter, const css::util::Date& x)
123 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
125 void SAL_CALL setTime(sal_Int32 parameter, const css::util::Time& x)
126 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
127 void SAL_CALL setTimestamp(sal_Int32 parameter, const css::util::DateTime& x)
128 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
130 void SAL_CALL setBinaryStream(sal_Int32 parameter, const Reference< css::io::XInputStream >& x, sal_Int32 length)
131 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
133 void SAL_CALL setCharacterStream(sal_Int32 parameter, const Reference< css::io::XInputStream >& x, sal_Int32 length)
134 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
136 void SAL_CALL setObject(sal_Int32 parameter, const Any& x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
138 void SAL_CALL setObjectWithInfo(sal_Int32 parameter, const Any& x, sal_Int32 targetSqlType, sal_Int32 scale)
139 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
141 void SAL_CALL setRef(sal_Int32 parameter, const Reference< css::sdbc::XRef >& x)
142 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
144 void SAL_CALL setBlob(sal_Int32 parameter, const Reference< css::sdbc::XBlob >& x)
145 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
147 void SAL_CALL setClob(sal_Int32 parameter, const Reference< css::sdbc::XClob >& x)
148 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
150 void SAL_CALL setArray(sal_Int32 parameter, const Reference< css::sdbc::XArray >& x)
151 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
153 void SAL_CALL clearParameters() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
155 // XPreparedBatchExecution
156 void SAL_CALL addBatch() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
157 void SAL_CALL clearBatch() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
158 css::uno::Sequence< sal_Int32 > SAL_CALL executeBatch() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
160 // XCloseable
161 void SAL_CALL close() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
163 // XResultSetMetaDataSupplier
164 Reference< css::sdbc::XResultSetMetaData > SAL_CALL getMetaData()
165 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
167 } /* mysqlc */
168 } /* connectivity */
169 #endif // INCLUDED_MYSQLC_SOURCE_MYSQLC_PREPAREDSTATEMENT_HXX
172 * Local variables:
173 * tab-width: 4
174 * c-basic-offset: 4
175 * End:
176 * vim600: noet sw=4 ts=4 fdm=marker
177 * vim<600: noet sw=4 ts=4
181 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */