bump product version to 5.0.4.1
[LibreOffice.git] / mysqlc / source / mysqlc_preparedstatement.hxx
blobb037c1c4205e39d16443e0541b034f30fc29b562
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< ::com::sun::star::sdbc::XPreparedStatement,
45 ::com::sun::star::sdbc::XParameters,
46 ::com::sun::star::sdbc::XPreparedBatchExecution,
47 ::com::sun::star::sdbc::XResultSetMetaDataSupplier,
48 ::com::sun::star::lang::XServiceInfo> OPreparedStatement_BASE;
50 class OPreparedStatement : public OCommonStatement,
51 public OPreparedStatement_BASE
53 protected:
54 unsigned int m_paramCount; // number of placeholders
55 sal_Int32 m_nNumParams; // Number of parameter markers for the prepared statement
56 Reference< XResultSetMetaData > m_xMetaData;
58 void checkParameterIndex(sal_Int32 parameter);
60 protected:
61 void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, const Any& rValue)
62 throw (::com::sun::star::uno::Exception, std::exception) SAL_OVERRIDE;
63 virtual ~OPreparedStatement();
64 public:
65 virtual rtl::OUString SAL_CALL getImplementationName()
66 throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
68 virtual sal_Bool SAL_CALL supportsService(
69 rtl::OUString const & ServiceName) throw (css::uno::RuntimeException, std::exception)
70 SAL_OVERRIDE;
72 virtual css::uno::Sequence<rtl::OUString> SAL_CALL
73 getSupportedServiceNames() throw (css::uno::RuntimeException, std::exception)
74 SAL_OVERRIDE;
76 OPreparedStatement(OConnection* _pConnection, sql::PreparedStatement * cppPrepStmt);
78 //XInterface
79 Any SAL_CALL queryInterface(const Type & rType) throw(RuntimeException, std::exception) SAL_OVERRIDE;
80 void SAL_CALL acquire() throw() SAL_OVERRIDE;
81 void SAL_CALL release() throw() SAL_OVERRIDE;
83 //XTypeProvider
84 ::com::sun::star::uno::Sequence< Type > SAL_CALL getTypes()
85 throw(RuntimeException, std::exception) SAL_OVERRIDE;
87 // XPreparedStatement
88 Reference< ::com::sun::star::sdbc::XResultSet > SAL_CALL executeQuery() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
89 sal_Int32 SAL_CALL executeUpdate() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
90 sal_Bool SAL_CALL execute() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
91 Reference< ::com::sun::star::sdbc::XConnection > SAL_CALL getConnection() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
93 // XStatement
94 ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSet > SAL_CALL executeQuery(const rtl::OUString& sql)
95 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
96 sal_Int32 SAL_CALL executeUpdate(const rtl::OUString& sql)
97 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
98 sal_Bool SAL_CALL execute( const rtl::OUString& sql )
99 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
101 // XParameters
102 void SAL_CALL setNull(sal_Int32 parameter, sal_Int32 sqlType) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
104 void SAL_CALL setObjectNull(sal_Int32 parameter, sal_Int32 sqlType, const rtl::OUString& typeName)
105 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
107 void SAL_CALL setBoolean(sal_Int32 parameter, sal_Bool x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
109 void SAL_CALL setByte(sal_Int32 parameter, sal_Int8 x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
111 void SAL_CALL setShort(sal_Int32 parameter, sal_Int16 x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
113 void SAL_CALL setInt(sal_Int32 parameter, sal_Int32 x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
115 void SAL_CALL setLong(sal_Int32 parameter, sal_Int64 x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
117 void SAL_CALL setFloat(sal_Int32 parameter, float x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
119 void SAL_CALL setDouble(sal_Int32 parameter, double x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
121 void SAL_CALL setString(sal_Int32 parameter, const rtl::OUString& x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
123 void SAL_CALL setBytes(sal_Int32 parameter, const ::com::sun::star::uno::Sequence< sal_Int8 >& x)
124 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
126 void SAL_CALL setDate(sal_Int32 parameter, const ::com::sun::star::util::Date& x)
127 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
129 void SAL_CALL setTime(sal_Int32 parameter, const ::com::sun::star::util::Time& x)
130 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
131 void SAL_CALL setTimestamp(sal_Int32 parameter, const ::com::sun::star::util::DateTime& x)
132 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
134 void SAL_CALL setBinaryStream(sal_Int32 parameter, const Reference< ::com::sun::star::io::XInputStream >& x, sal_Int32 length)
135 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
137 void SAL_CALL setCharacterStream(sal_Int32 parameter, const Reference< ::com::sun::star::io::XInputStream >& x, sal_Int32 length)
138 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
140 void SAL_CALL setObject(sal_Int32 parameter, const Any& x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
142 void SAL_CALL setObjectWithInfo(sal_Int32 parameter, const Any& x, sal_Int32 targetSqlType, sal_Int32 scale)
143 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
145 void SAL_CALL setRef(sal_Int32 parameter, const Reference< ::com::sun::star::sdbc::XRef >& x)
146 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
148 void SAL_CALL setBlob(sal_Int32 parameter, const Reference< ::com::sun::star::sdbc::XBlob >& x)
149 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
151 void SAL_CALL setClob(sal_Int32 parameter, const Reference< ::com::sun::star::sdbc::XClob >& x)
152 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
154 void SAL_CALL setArray(sal_Int32 parameter, const Reference< ::com::sun::star::sdbc::XArray >& x)
155 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
157 void SAL_CALL clearParameters() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
159 // XPreparedBatchExecution
160 void SAL_CALL addBatch() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
161 void SAL_CALL clearBatch() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
162 ::com::sun::star::uno::Sequence< sal_Int32 > SAL_CALL executeBatch() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
164 // XCloseable
165 void SAL_CALL close() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
167 // XResultSetMetaDataSupplier
168 Reference< ::com::sun::star::sdbc::XResultSetMetaData > SAL_CALL getMetaData()
169 throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
171 } /* mysqlc */
172 } /* connectivity */
173 #endif // INCLUDED_MYSQLC_SOURCE_MYSQLC_PREPAREDSTATEMENT_HXX
176 * Local variables:
177 * tab-width: 4
178 * c-basic-offset: 4
179 * End:
180 * vim600: noet sw=4 ts=4 fdm=marker
181 * vim<600: noet sw=4 ts=4
185 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */