LibreOffice Module connectivity (master) 1
OPreparedStatement.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#pragma once
21
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>
30
31namespace connectivity::odbc
32 {
33
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;
40
42 public OStatement_BASE2,
44 {
45 static const short invalid_scale = -1;
46
47 // Data attributes
48
49 SQLSMALLINT numParams; // Number of parameter markers for the prepared statement
50
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;
56
57 void FreeParams();
60 void putParamData (sal_Int32 index);
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);
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);
76
77 bool isPrepared() const { return m_bPrepared;}
78 void prepareStatement();
79 void checkParameterIndex(sal_Int32 _parameterIndex);
80
84 virtual rtl::Reference<OResultSet> createResultSet() override;
85
86 virtual void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle,
87 const css::uno::Any& rValue) override;
88 public:
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
95
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;
102
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;
140
141 public:
142 using OStatement_Base::executeQuery;
143 using OStatement_Base::executeUpdate;
144 using OStatement_Base::execute;
145 };
146
147}
148
149/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
void setParameter(sal_Int32 parameterIndex, sal_Int32 _nType, const css::uno::Sequence< sal_Int8 > &Data)
virtual css::uno::Any SAL_CALL queryInterface(const css::uno::Type &rType) override
OPreparedStatement(OPreparedStatement const &)=delete
virtual void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, const css::uno::Any &rValue) override
css::uno::Reference< css::sdbc::XResultSetMetaData > m_xMetaData
std::unique_ptr< OBoundParam[]> boundParams
OPreparedStatement & operator=(OPreparedStatement const &)=delete
Type
::cppu::ImplHelper5< css::sdbc::XPreparedStatement, css::sdbc::XParameters, css::sdbc::XPreparedBatchExecution, css::sdbc::XResultSetMetaDataSupplier, css::lang::XServiceInfo > OPreparedStatement_BASE
Reference< XConnection > getConnection(const Reference< XRowSet > &_rxRowSet)
Definition: dbtools.cxx:348
void setObjectWithInfo(const Reference< XParameters > &_xParams, sal_Int32 parameterIndex, const Any &x, sal_Int32 sqlType, sal_Int32 scale)
Definition: dbtools.cxx:1765
#define OOO_DLLPUBLIC_ODBCBASE
OUString typeName
sal_Int32 scale
Definition: pq_statics.cxx:62
unsigned char sal_Bool
signed char sal_Int8