Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / connectivity / source / inc / odbc / OPreparedStatement.hxx
blob37e29db9c5a22ac1e27cf9c7ff46282b7a63ed02
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 #pragma once
22 #include <odbc/odbcbasedllapi.hxx>
23 #include <odbc/OStatement.hxx>
24 #include <com/sun/star/sdbc/XPreparedStatement.hpp>
25 #include <com/sun/star/sdbc/XParameters.hpp>
26 #include <com/sun/star/sdbc/XResultSetMetaDataSupplier.hpp>
27 #include <com/sun/star/sdbc/XPreparedBatchExecution.hpp>
28 #include <com/sun/star/io/XInputStream.hpp>
29 #include <cppuhelper/implbase5.hxx>
31 namespace connectivity::odbc
34 class OBoundParam;
35 typedef ::cppu::ImplHelper5< css::sdbc::XPreparedStatement,
36 css::sdbc::XParameters,
37 css::sdbc::XPreparedBatchExecution,
38 css::sdbc::XResultSetMetaDataSupplier,
39 css::lang::XServiceInfo> OPreparedStatement_BASE;
41 class OOO_DLLPUBLIC_ODBCBASE OPreparedStatement final :
42 public OStatement_BASE2,
43 public OPreparedStatement_BASE
45 static const short invalid_scale = -1;
47 // Data attributes
49 SQLSMALLINT numParams; // Number of parameter markers for the prepared statement
51 std::unique_ptr<OBoundParam[]> boundParams;
52 // Array of bound parameter objects. Each parameter marker will have a
53 // corresponding object to hold bind information, and resulting data.
54 css::uno::Reference< css::sdbc::XResultSetMetaData > m_xMetaData;
55 bool m_bPrepared;
57 void FreeParams();
58 /// @throws css::sdbc::SQLException
59 /// @throws css::uno::RuntimeException
60 void putParamData (sal_Int32 index);
61 /// @throws css::sdbc::SQLException
62 /// @throws css::uno::RuntimeException
63 void setStream (sal_Int32 ParameterIndex,const css::uno::Reference< css::io::XInputStream>& x,
64 SQLLEN length,sal_Int32 SQLtype);
65 SQLLEN* getLengthBuf (sal_Int32 index);
66 void* allocBindBuf ( sal_Int32 index, sal_Int32 bufLen);
67 /// @throws css::sdbc::SQLException
68 void initBoundParam ();
69 void setParameterPre(sal_Int32 parameterIndex);
70 template <typename T> void setScalarParameter(sal_Int32 parameterIndex, sal_Int32 _nType, SQLULEN _nColumnSize, const T i_Value);
71 template <typename T> void setScalarParameter(sal_Int32 parameterIndex, sal_Int32 _nType, SQLULEN _nColumnSize, sal_Int32 _nScale, const T i_Value);
72 void setParameter(sal_Int32 parameterIndex, sal_Int32 _nType, SQLULEN _nColumnSize, sal_Int32 _nScale, const void* _pData, SQLULEN _nDataLen, SQLLEN _nDataAllocLen);
73 // Wrappers for special cases
74 void setParameter(sal_Int32 parameterIndex, sal_Int32 _nType, sal_Int16 _nScale, const OUString &_sData);
75 void setParameter(sal_Int32 parameterIndex, sal_Int32 _nType, const css::uno::Sequence< sal_Int8 > &Data);
77 bool isPrepared() const { return m_bPrepared;}
78 void prepareStatement();
79 void checkParameterIndex(sal_Int32 _parameterIndex);
81 /**
82 creates the driver specific resultset (factory)
84 virtual rtl::Reference<OResultSet> createResultSet() override;
86 virtual void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle,
87 const css::uno::Any& rValue) override;
88 public:
89 DECLARE_SERVICE_INFO();
90 // A ctor, needed to return the object
91 OPreparedStatement( OConnection* _pConnection,const OUString& sql);
92 virtual ~OPreparedStatement() override;
93 OPreparedStatement& operator=( OPreparedStatement const & ) = delete; // MSVC2015 workaround
94 OPreparedStatement( OPreparedStatement const & ) = delete; // MSVC2015 workaround
96 //XInterface
97 virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) override;
98 virtual void SAL_CALL acquire() noexcept override;
99 virtual void SAL_CALL release() noexcept override;
100 //XTypeProvider
101 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) override;
103 // XPreparedStatement
104 virtual css::uno::Reference< css::sdbc::XResultSet > SAL_CALL executeQuery( ) override;
105 virtual sal_Int32 SAL_CALL executeUpdate( ) override;
106 virtual sal_Bool SAL_CALL execute( ) override;
107 virtual css::uno::Reference< css::sdbc::XConnection > SAL_CALL getConnection( ) override;
108 // XParameters
109 virtual void SAL_CALL setNull( sal_Int32 parameterIndex, sal_Int32 sqlType ) override;
110 virtual void SAL_CALL setObjectNull( sal_Int32 parameterIndex, sal_Int32 sqlType, const OUString& typeName ) override;
111 virtual void SAL_CALL setBoolean( sal_Int32 parameterIndex, sal_Bool x ) override;
112 virtual void SAL_CALL setByte( sal_Int32 parameterIndex, sal_Int8 x ) override;
113 virtual void SAL_CALL setShort( sal_Int32 parameterIndex, sal_Int16 x ) override;
114 virtual void SAL_CALL setInt( sal_Int32 parameterIndex, sal_Int32 x ) override;
115 virtual void SAL_CALL setLong( sal_Int32 parameterIndex, sal_Int64 x ) override;
116 virtual void SAL_CALL setFloat( sal_Int32 parameterIndex, float x ) override;
117 virtual void SAL_CALL setDouble( sal_Int32 parameterIndex, double x ) override;
118 virtual void SAL_CALL setString( sal_Int32 parameterIndex, const OUString& x ) override;
119 virtual void SAL_CALL setBytes( sal_Int32 parameterIndex, const css::uno::Sequence< sal_Int8 >& x ) override;
120 virtual void SAL_CALL setDate( sal_Int32 parameterIndex, const css::util::Date& x ) override;
121 virtual void SAL_CALL setTime( sal_Int32 parameterIndex, const css::util::Time& x ) override;
122 virtual void SAL_CALL setTimestamp( sal_Int32 parameterIndex, const css::util::DateTime& x ) override;
123 virtual void SAL_CALL setBinaryStream( sal_Int32 parameterIndex, const css::uno::Reference< css::io::XInputStream >& x, sal_Int32 length ) override;
124 virtual void SAL_CALL setCharacterStream( sal_Int32 parameterIndex, const css::uno::Reference< css::io::XInputStream >& x, sal_Int32 length ) override;
125 virtual void SAL_CALL setObject( sal_Int32 parameterIndex, const css::uno::Any& x ) override;
126 virtual void SAL_CALL setObjectWithInfo( sal_Int32 parameterIndex, const css::uno::Any& x, sal_Int32 targetSqlType, sal_Int32 scale ) override;
127 virtual void SAL_CALL setRef( sal_Int32 parameterIndex, const css::uno::Reference< css::sdbc::XRef >& x ) override;
128 virtual void SAL_CALL setBlob( sal_Int32 parameterIndex, const css::uno::Reference< css::sdbc::XBlob >& x ) override;
129 virtual void SAL_CALL setClob( sal_Int32 parameterIndex, const css::uno::Reference< css::sdbc::XClob >& x ) override;
130 virtual void SAL_CALL setArray( sal_Int32 parameterIndex, const css::uno::Reference< css::sdbc::XArray >& x ) override;
131 virtual void SAL_CALL clearParameters( ) override;
132 // XPreparedBatchExecution
133 virtual void SAL_CALL addBatch( ) override;
134 virtual void SAL_CALL clearBatch( ) override;
135 virtual css::uno::Sequence< sal_Int32 > SAL_CALL executeBatch( ) override;
136 // XCloseable
137 virtual void SAL_CALL close( ) override;
138 // XResultSetMetaDataSupplier
139 virtual css::uno::Reference< css::sdbc::XResultSetMetaData > SAL_CALL getMetaData( ) override;
141 public:
142 using OStatement_Base::executeQuery;
143 using OStatement_Base::executeUpdate;
144 using OStatement_Base::execute;
149 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */