xref: /AOO41X/main/connectivity/source/drivers/evoab2/NPreparedStatement.cxx (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1*cdf0e10cSrcweir  /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
29*cdf0e10cSrcweir #include "precompiled_connectivity.hxx"
30*cdf0e10cSrcweir 
31*cdf0e10cSrcweir #include <stdio.h>
32*cdf0e10cSrcweir #include <osl/diagnose.h>
33*cdf0e10cSrcweir #include "NPreparedStatement.hxx"
34*cdf0e10cSrcweir #include <com/sun/star/sdbc/DataType.hpp>
35*cdf0e10cSrcweir #include <cppuhelper/typeprovider.hxx>
36*cdf0e10cSrcweir #include <com/sun/star/lang/DisposedException.hpp>
37*cdf0e10cSrcweir #include "propertyids.hxx"
38*cdf0e10cSrcweir #include <connectivity/dbexception.hxx>
39*cdf0e10cSrcweir #include <connectivity/dbtools.hxx>
40*cdf0e10cSrcweir #include <tools/diagnose_ex.h>
41*cdf0e10cSrcweir 
42*cdf0e10cSrcweir #include "resource/common_res.hrc"
43*cdf0e10cSrcweir 
44*cdf0e10cSrcweir using namespace connectivity::evoab;
45*cdf0e10cSrcweir using namespace com::sun::star::uno;
46*cdf0e10cSrcweir using namespace com::sun::star::lang;
47*cdf0e10cSrcweir using namespace com::sun::star::beans;
48*cdf0e10cSrcweir using namespace com::sun::star::sdbc;
49*cdf0e10cSrcweir using namespace com::sun::star::container;
50*cdf0e10cSrcweir using namespace com::sun::star::io;
51*cdf0e10cSrcweir using namespace com::sun::star::util;
52*cdf0e10cSrcweir 
53*cdf0e10cSrcweir IMPLEMENT_SERVICE_INFO(OEvoabPreparedStatement,"com.sun.star.sdbcx.evoab.PreparedStatement","com.sun.star.sdbc.PreparedStatement");
54*cdf0e10cSrcweir 
55*cdf0e10cSrcweir 
56*cdf0e10cSrcweir OEvoabPreparedStatement::OEvoabPreparedStatement( OEvoabConnection* _pConnection )
57*cdf0e10cSrcweir     :OCommonStatement(_pConnection)
58*cdf0e10cSrcweir     ,m_sSqlStatement()
59*cdf0e10cSrcweir     ,m_xMetaData()
60*cdf0e10cSrcweir {
61*cdf0e10cSrcweir }
62*cdf0e10cSrcweir 
63*cdf0e10cSrcweir // -----------------------------------------------------------------------------
64*cdf0e10cSrcweir void OEvoabPreparedStatement::construct( const ::rtl::OUString& _sql )
65*cdf0e10cSrcweir {
66*cdf0e10cSrcweir     m_sSqlStatement = _sql;
67*cdf0e10cSrcweir 
68*cdf0e10cSrcweir     m_aQueryData = impl_getEBookQuery_throw( m_sSqlStatement );
69*cdf0e10cSrcweir     ENSURE_OR_THROW( m_aQueryData.getQuery(), "no EBookQuery" );
70*cdf0e10cSrcweir     ENSURE_OR_THROW( m_aQueryData.xSelectColumns.isValid(), "no SelectColumn" );
71*cdf0e10cSrcweir 
72*cdf0e10cSrcweir     // create our meta data
73*cdf0e10cSrcweir     OEvoabResultSetMetaData* pMeta = new OEvoabResultSetMetaData( m_aQueryData.sTable );
74*cdf0e10cSrcweir 	m_xMetaData = pMeta;
75*cdf0e10cSrcweir 	pMeta->setEvoabFields( m_aQueryData.xSelectColumns );
76*cdf0e10cSrcweir }
77*cdf0e10cSrcweir 
78*cdf0e10cSrcweir // -----------------------------------------------------------------------------
79*cdf0e10cSrcweir OEvoabPreparedStatement::~OEvoabPreparedStatement()
80*cdf0e10cSrcweir {
81*cdf0e10cSrcweir }
82*cdf0e10cSrcweir 
83*cdf0e10cSrcweir // -----------------------------------------------------------------------------
84*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::acquire() throw()
85*cdf0e10cSrcweir {
86*cdf0e10cSrcweir     OCommonStatement::acquire();
87*cdf0e10cSrcweir }
88*cdf0e10cSrcweir 
89*cdf0e10cSrcweir // -----------------------------------------------------------------------------
90*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::release() throw()
91*cdf0e10cSrcweir {
92*cdf0e10cSrcweir     OCommonStatement::release();
93*cdf0e10cSrcweir }
94*cdf0e10cSrcweir 
95*cdf0e10cSrcweir // -----------------------------------------------------------------------------
96*cdf0e10cSrcweir Any SAL_CALL OEvoabPreparedStatement::queryInterface( const Type & rType ) throw(RuntimeException)
97*cdf0e10cSrcweir {
98*cdf0e10cSrcweir     Any aRet = OCommonStatement::queryInterface(rType);
99*cdf0e10cSrcweir     if(!aRet.hasValue())
100*cdf0e10cSrcweir         aRet = OPreparedStatement_BASE::queryInterface(rType);
101*cdf0e10cSrcweir     return aRet;
102*cdf0e10cSrcweir }
103*cdf0e10cSrcweir // -------------------------------------------------------------------------
104*cdf0e10cSrcweir Sequence< Type > SAL_CALL OEvoabPreparedStatement::getTypes(  ) throw(RuntimeException)
105*cdf0e10cSrcweir {
106*cdf0e10cSrcweir     return ::comphelper::concatSequences(OPreparedStatement_BASE::getTypes(),OCommonStatement::getTypes());
107*cdf0e10cSrcweir }
108*cdf0e10cSrcweir // -------------------------------------------------------------------------
109*cdf0e10cSrcweir 
110*cdf0e10cSrcweir Reference< XResultSetMetaData > SAL_CALL OEvoabPreparedStatement::getMetaData(  ) throw(SQLException, RuntimeException)
111*cdf0e10cSrcweir {
112*cdf0e10cSrcweir     ::osl::MutexGuard aGuard( m_aMutex );
113*cdf0e10cSrcweir     checkDisposed(OCommonStatement_IBase::rBHelper.bDisposed);
114*cdf0e10cSrcweir 
115*cdf0e10cSrcweir     // the meta data should have been created at construction time
116*cdf0e10cSrcweir     ENSURE_OR_THROW( m_xMetaData.is(), "internal error: no meta data" );
117*cdf0e10cSrcweir     return m_xMetaData;
118*cdf0e10cSrcweir }
119*cdf0e10cSrcweir // -------------------------------------------------------------------------
120*cdf0e10cSrcweir 
121*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::close(  ) throw(SQLException, RuntimeException)
122*cdf0e10cSrcweir {
123*cdf0e10cSrcweir     ::osl::MutexGuard aGuard( m_aMutex );
124*cdf0e10cSrcweir     checkDisposed(OCommonStatement_IBase::rBHelper.bDisposed);
125*cdf0e10cSrcweir 
126*cdf0e10cSrcweir     free_column_resources();
127*cdf0e10cSrcweir     // Reset last warning message
128*cdf0e10cSrcweir     try {
129*cdf0e10cSrcweir         clearWarnings ();
130*cdf0e10cSrcweir         OCommonStatement::close();
131*cdf0e10cSrcweir     }
132*cdf0e10cSrcweir     catch (SQLException &) {
133*cdf0e10cSrcweir         // If we get an error, ignore
134*cdf0e10cSrcweir     }
135*cdf0e10cSrcweir 
136*cdf0e10cSrcweir }
137*cdf0e10cSrcweir // -------------------------------------------------------------------------
138*cdf0e10cSrcweir 
139*cdf0e10cSrcweir sal_Bool SAL_CALL OEvoabPreparedStatement::execute(  ) throw(SQLException, RuntimeException)
140*cdf0e10cSrcweir {
141*cdf0e10cSrcweir     ::osl::MutexGuard aGuard( m_aMutex );
142*cdf0e10cSrcweir     checkDisposed(OCommonStatement_IBase::rBHelper.bDisposed);
143*cdf0e10cSrcweir 
144*cdf0e10cSrcweir     Reference< XResultSet> xRS = impl_executeQuery_throw( m_aQueryData );
145*cdf0e10cSrcweir     return xRS.is();
146*cdf0e10cSrcweir }
147*cdf0e10cSrcweir // -------------------------------------------------------------------------
148*cdf0e10cSrcweir 
149*cdf0e10cSrcweir sal_Int32 SAL_CALL OEvoabPreparedStatement::executeUpdate(  ) throw(SQLException, RuntimeException)
150*cdf0e10cSrcweir {
151*cdf0e10cSrcweir     ::osl::MutexGuard aGuard( m_aMutex );
152*cdf0e10cSrcweir     checkDisposed(OCommonStatement_IBase::rBHelper.bDisposed);
153*cdf0e10cSrcweir     ::dbtools::throwFeatureNotImplementedException( "XStatement::executeUpdate", *this );
154*cdf0e10cSrcweir     return 0;
155*cdf0e10cSrcweir }
156*cdf0e10cSrcweir // -------------------------------------------------------------------------
157*cdf0e10cSrcweir 
158*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::setString( sal_Int32 /*parameterIndex*/, const ::rtl::OUString& /*x*/ ) throw(SQLException, RuntimeException)
159*cdf0e10cSrcweir {
160*cdf0e10cSrcweir     ::dbtools::throwFunctionNotSupportedException( "XParameters::setString", *this );
161*cdf0e10cSrcweir }
162*cdf0e10cSrcweir // -------------------------------------------------------------------------
163*cdf0e10cSrcweir 
164*cdf0e10cSrcweir Reference< XConnection > SAL_CALL OEvoabPreparedStatement::getConnection(  ) throw(SQLException, RuntimeException)
165*cdf0e10cSrcweir {
166*cdf0e10cSrcweir     ::osl::MutexGuard aGuard( m_aMutex );
167*cdf0e10cSrcweir     checkDisposed(OCommonStatement_IBase::rBHelper.bDisposed);
168*cdf0e10cSrcweir 
169*cdf0e10cSrcweir     return impl_getConnection();
170*cdf0e10cSrcweir }
171*cdf0e10cSrcweir // -------------------------------------------------------------------------
172*cdf0e10cSrcweir 
173*cdf0e10cSrcweir Reference< XResultSet > SAL_CALL OEvoabPreparedStatement::executeQuery(  ) throw(SQLException, RuntimeException)
174*cdf0e10cSrcweir {
175*cdf0e10cSrcweir     ::osl::MutexGuard aGuard( m_aMutex );
176*cdf0e10cSrcweir     checkDisposed(OCommonStatement_IBase::rBHelper.bDisposed);
177*cdf0e10cSrcweir 
178*cdf0e10cSrcweir     return impl_executeQuery_throw( m_aQueryData );
179*cdf0e10cSrcweir }
180*cdf0e10cSrcweir // -------------------------------------------------------------------------
181*cdf0e10cSrcweir 
182*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::setBoolean( sal_Int32 /*parameterIndex*/, sal_Bool /*x*/ ) throw(SQLException, RuntimeException)
183*cdf0e10cSrcweir {
184*cdf0e10cSrcweir     ::dbtools::throwFunctionNotSupportedException( "XParameters::setBoolean", *this );
185*cdf0e10cSrcweir 
186*cdf0e10cSrcweir }
187*cdf0e10cSrcweir // -------------------------------------------------------------------------
188*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::setByte( sal_Int32 /*parameterIndex*/, sal_Int8 /*x*/ ) throw(SQLException, RuntimeException)
189*cdf0e10cSrcweir {
190*cdf0e10cSrcweir     ::dbtools::throwFunctionNotSupportedException( "XParameters::setByte", *this );
191*cdf0e10cSrcweir }
192*cdf0e10cSrcweir // -------------------------------------------------------------------------
193*cdf0e10cSrcweir 
194*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::setDate( sal_Int32 /*parameterIndex*/, const Date& /*aData*/ ) throw(SQLException, RuntimeException)
195*cdf0e10cSrcweir {
196*cdf0e10cSrcweir     ::dbtools::throwFunctionNotSupportedException( "XParameters::setDate", *this );
197*cdf0e10cSrcweir }
198*cdf0e10cSrcweir // -------------------------------------------------------------------------
199*cdf0e10cSrcweir 
200*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::setTime( sal_Int32 /*parameterIndex*/, const Time& /*aVal*/ ) throw(SQLException, RuntimeException)
201*cdf0e10cSrcweir {
202*cdf0e10cSrcweir     ::dbtools::throwFunctionNotSupportedException( "XParameters::setTime", *this );
203*cdf0e10cSrcweir }
204*cdf0e10cSrcweir // -------------------------------------------------------------------------
205*cdf0e10cSrcweir 
206*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::setTimestamp( sal_Int32 /*parameterIndex*/, const DateTime& /*aVal*/ ) throw(SQLException, RuntimeException)
207*cdf0e10cSrcweir {
208*cdf0e10cSrcweir     ::dbtools::throwFunctionNotSupportedException( "XParameters::setTimestamp", *this );
209*cdf0e10cSrcweir }
210*cdf0e10cSrcweir // -------------------------------------------------------------------------
211*cdf0e10cSrcweir 
212*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::setDouble( sal_Int32 /*parameterIndex*/, double /*x*/ ) throw(SQLException, RuntimeException)
213*cdf0e10cSrcweir {
214*cdf0e10cSrcweir     ::dbtools::throwFunctionNotSupportedException( "XParameters::setDouble", *this );
215*cdf0e10cSrcweir }
216*cdf0e10cSrcweir 
217*cdf0e10cSrcweir // -------------------------------------------------------------------------
218*cdf0e10cSrcweir 
219*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::setFloat( sal_Int32 /*parameterIndex*/, float /*x*/ ) throw(SQLException, RuntimeException)
220*cdf0e10cSrcweir {
221*cdf0e10cSrcweir     ::dbtools::throwFunctionNotSupportedException( "XParameters::setFloat", *this );
222*cdf0e10cSrcweir }
223*cdf0e10cSrcweir // -------------------------------------------------------------------------
224*cdf0e10cSrcweir 
225*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::setInt( sal_Int32 /*parameterIndex*/, sal_Int32 /*x*/ ) throw(SQLException, RuntimeException)
226*cdf0e10cSrcweir {
227*cdf0e10cSrcweir     ::dbtools::throwFunctionNotSupportedException( "XParameters::setInt", *this );
228*cdf0e10cSrcweir }
229*cdf0e10cSrcweir // -------------------------------------------------------------------------
230*cdf0e10cSrcweir 
231*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::setLong( sal_Int32 /*parameterIndex*/, sal_Int64 /*aVal*/ ) throw(SQLException, RuntimeException)
232*cdf0e10cSrcweir {
233*cdf0e10cSrcweir     ::dbtools::throwFunctionNotSupportedException( "XParameters::setLong", *this );
234*cdf0e10cSrcweir }
235*cdf0e10cSrcweir // -------------------------------------------------------------------------
236*cdf0e10cSrcweir 
237*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::setNull( sal_Int32 /*parameterIndex*/, sal_Int32 /*sqlType*/ ) throw(SQLException, RuntimeException)
238*cdf0e10cSrcweir {
239*cdf0e10cSrcweir     ::dbtools::throwFunctionNotSupportedException( "XParameters::setNull", *this );
240*cdf0e10cSrcweir }
241*cdf0e10cSrcweir // -------------------------------------------------------------------------
242*cdf0e10cSrcweir 
243*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::setClob( sal_Int32 /*parameterIndex*/, const Reference< XClob >& /*x*/ ) throw(SQLException, RuntimeException)
244*cdf0e10cSrcweir {
245*cdf0e10cSrcweir     ::dbtools::throwFunctionNotSupportedException( "XParameters::setClob", *this );
246*cdf0e10cSrcweir }
247*cdf0e10cSrcweir // -------------------------------------------------------------------------
248*cdf0e10cSrcweir 
249*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::setBlob( sal_Int32 /*parameterIndex*/, const Reference< XBlob >& /*x*/ ) throw(SQLException, RuntimeException)
250*cdf0e10cSrcweir {
251*cdf0e10cSrcweir     ::dbtools::throwFunctionNotSupportedException( "XParameters::setBlob", *this );
252*cdf0e10cSrcweir }
253*cdf0e10cSrcweir // -------------------------------------------------------------------------
254*cdf0e10cSrcweir 
255*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::setArray( sal_Int32 /*parameterIndex*/, const Reference< XArray >& /*x*/ ) throw(SQLException, RuntimeException)
256*cdf0e10cSrcweir {
257*cdf0e10cSrcweir     ::dbtools::throwFunctionNotSupportedException( "XParameters::setArray", *this );
258*cdf0e10cSrcweir }
259*cdf0e10cSrcweir // -------------------------------------------------------------------------
260*cdf0e10cSrcweir 
261*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::setRef( sal_Int32 /*parameterIndex*/, const Reference< XRef >& /*x*/ ) throw(SQLException, RuntimeException)
262*cdf0e10cSrcweir {
263*cdf0e10cSrcweir     ::dbtools::throwFunctionNotSupportedException( "XParameters::setRef", *this );
264*cdf0e10cSrcweir }
265*cdf0e10cSrcweir // -------------------------------------------------------------------------
266*cdf0e10cSrcweir 
267*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::setObjectWithInfo( sal_Int32 /*parameterIndex*/, const Any& /*x*/, sal_Int32 /*sqlType*/, sal_Int32 /*scale*/ ) throw(SQLException, RuntimeException)
268*cdf0e10cSrcweir {
269*cdf0e10cSrcweir     ::dbtools::throwFunctionNotSupportedException( "XParameters::setObjectWithInfo", *this );
270*cdf0e10cSrcweir }
271*cdf0e10cSrcweir // -------------------------------------------------------------------------
272*cdf0e10cSrcweir 
273*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::setObjectNull( sal_Int32 /*parameterIndex*/, sal_Int32 /*sqlType*/, const ::rtl::OUString& /*typeName*/ ) throw(SQLException, RuntimeException)
274*cdf0e10cSrcweir {
275*cdf0e10cSrcweir     ::dbtools::throwFunctionNotSupportedException( "XParameters::setObjectNull", *this );
276*cdf0e10cSrcweir }
277*cdf0e10cSrcweir // -------------------------------------------------------------------------
278*cdf0e10cSrcweir 
279*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::setObject( sal_Int32 parameterIndex, const Any& x ) throw(SQLException, RuntimeException)
280*cdf0e10cSrcweir {
281*cdf0e10cSrcweir     if(!::dbtools::implSetObject(this,parameterIndex,x))
282*cdf0e10cSrcweir     {
283*cdf0e10cSrcweir         const ::rtl::OUString sError( getOwnConnection()->getResources().getResourceStringWithSubstitution(
284*cdf0e10cSrcweir                 STR_UNKNOWN_PARA_TYPE,
285*cdf0e10cSrcweir                 "$position$", ::rtl::OUString::valueOf(parameterIndex)
286*cdf0e10cSrcweir              ) );
287*cdf0e10cSrcweir         ::dbtools::throwGenericSQLException(sError,*this);
288*cdf0e10cSrcweir     }
289*cdf0e10cSrcweir }
290*cdf0e10cSrcweir // -------------------------------------------------------------------------
291*cdf0e10cSrcweir 
292*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::setShort( sal_Int32 /*parameterIndex*/, sal_Int16 /*x*/ ) throw(SQLException, RuntimeException)
293*cdf0e10cSrcweir {
294*cdf0e10cSrcweir     ::dbtools::throwFunctionNotSupportedException( "XParameters::setShort", *this );
295*cdf0e10cSrcweir }
296*cdf0e10cSrcweir // -------------------------------------------------------------------------
297*cdf0e10cSrcweir 
298*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::setBytes( sal_Int32 /*parameterIndex*/, const Sequence< sal_Int8 >& /*x*/ ) throw(SQLException, RuntimeException)
299*cdf0e10cSrcweir {
300*cdf0e10cSrcweir     ::dbtools::throwFunctionNotSupportedException( "XParameters::setBytes", *this );
301*cdf0e10cSrcweir }
302*cdf0e10cSrcweir // -------------------------------------------------------------------------
303*cdf0e10cSrcweir 
304*cdf0e10cSrcweir 
305*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::setCharacterStream( sal_Int32 /*parameterIndex*/, const Reference< XInputStream >& /*x*/, sal_Int32 /*length*/ ) throw(SQLException, RuntimeException)
306*cdf0e10cSrcweir {
307*cdf0e10cSrcweir     ::dbtools::throwFunctionNotSupportedException( "XParameters::setCharacterStream", *this );
308*cdf0e10cSrcweir }
309*cdf0e10cSrcweir // -------------------------------------------------------------------------
310*cdf0e10cSrcweir 
311*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::setBinaryStream( sal_Int32 /*parameterIndex*/, const Reference< XInputStream >& /*x*/, sal_Int32 /*length*/ ) throw(SQLException, RuntimeException)
312*cdf0e10cSrcweir {
313*cdf0e10cSrcweir     ::dbtools::throwFunctionNotSupportedException( "XParameters::setBinaryStream", *this );
314*cdf0e10cSrcweir }
315*cdf0e10cSrcweir // -------------------------------------------------------------------------
316*cdf0e10cSrcweir 
317*cdf0e10cSrcweir void SAL_CALL OEvoabPreparedStatement::clearParameters(  ) throw(SQLException, RuntimeException)
318*cdf0e10cSrcweir {
319*cdf0e10cSrcweir }
320*cdf0e10cSrcweir // -----------------------------------------------------------------------------
321*cdf0e10cSrcweir Reference< XResultSet > SAL_CALL OEvoabPreparedStatement::getResultSet(  ) throw(SQLException, RuntimeException)
322*cdf0e10cSrcweir {
323*cdf0e10cSrcweir     return NULL;
324*cdf0e10cSrcweir }
325*cdf0e10cSrcweir // -----------------------------------------------------------------------------
326*cdf0e10cSrcweir sal_Int32 SAL_CALL OEvoabPreparedStatement::getUpdateCount(  ) throw(SQLException, RuntimeException)
327*cdf0e10cSrcweir {
328*cdf0e10cSrcweir     return 0;
329*cdf0e10cSrcweir }
330*cdf0e10cSrcweir // -----------------------------------------------------------------------------
331*cdf0e10cSrcweir sal_Bool SAL_CALL OEvoabPreparedStatement::getMoreResults(  ) throw(SQLException, RuntimeException)
332*cdf0e10cSrcweir {
333*cdf0e10cSrcweir     return sal_False;
334*cdf0e10cSrcweir }
335*cdf0e10cSrcweir // -----------------------------------------------------------------------------
336