2010-10-12 15:53:47 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-12 22:04:38 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2006-09-17 01:33:34 +00:00
|
|
|
|
2000-12-06 10:51:16 +00:00
|
|
|
#include <stdio.h>
|
2001-08-24 05:19:41 +00:00
|
|
|
#include "connectivity/sdbcx/VColumn.hxx"
|
2000-09-18 15:18:56 +00:00
|
|
|
#include <osl/diagnose.h>
|
|
|
|
#include "file/FPreparedStatement.hxx"
|
|
|
|
#include <com/sun/star/sdbc/DataType.hpp>
|
|
|
|
#include "file/FResultSetMetaData.hxx"
|
|
|
|
#include <cppuhelper/typeprovider.hxx>
|
2000-10-09 11:34:19 +00:00
|
|
|
#include <comphelper/sequence.hxx>
|
2000-09-29 14:30:09 +00:00
|
|
|
#include <com/sun/star/lang/DisposedException.hpp>
|
2000-12-06 10:51:16 +00:00
|
|
|
#include "connectivity/dbconversion.hxx"
|
2001-05-14 10:42:44 +00:00
|
|
|
#include "connectivity/dbexception.hxx"
|
2001-06-22 09:58:46 +00:00
|
|
|
#include "connectivity/dbtools.hxx"
|
2002-07-05 06:46:24 +00:00
|
|
|
#include "connectivity/PColumn.hxx"
|
2006-06-20 00:25:53 +00:00
|
|
|
#include "diagnose_ex.h"
|
2001-08-24 05:19:41 +00:00
|
|
|
#include <comphelper/types.hxx>
|
|
|
|
#include <com/sun/star/sdbc/ColumnValue.hpp>
|
2002-01-16 07:43:41 +00:00
|
|
|
#include <tools/debug.hxx>
|
2008-10-01 12:28:29 +00:00
|
|
|
#include "resource/file_res.hrc"
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
using namespace connectivity;
|
2001-08-24 05:19:41 +00:00
|
|
|
using namespace comphelper;
|
2000-12-06 10:51:16 +00:00
|
|
|
using namespace ::dbtools;
|
2000-09-18 15:18:56 +00:00
|
|
|
using namespace connectivity::file;
|
|
|
|
using namespace com::sun::star::uno;
|
|
|
|
using namespace com::sun::star::lang;
|
|
|
|
using namespace com::sun::star::beans;
|
|
|
|
using namespace com::sun::star::sdbc;
|
|
|
|
using namespace com::sun::star::sdbcx;
|
|
|
|
using namespace com::sun::star::container;
|
2012-12-09 16:59:27 +01:00
|
|
|
using namespace com::sun::star;
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
IMPLEMENT_SERVICE_INFO(OPreparedStatement,"com.sun.star.sdbc.driver.file.PreparedStatement","com.sun.star.sdbc.PreparedStatement");
|
|
|
|
|
2002-01-16 07:43:41 +00:00
|
|
|
DBG_NAME( file_OPreparedStatement )
|
|
|
|
// -------------------------------------------------------------------------
|
2001-05-17 05:46:55 +00:00
|
|
|
OPreparedStatement::OPreparedStatement( OConnection* _pConnection)
|
2000-09-18 15:18:56 +00:00
|
|
|
: OStatement_BASE2( _pConnection )
|
|
|
|
,m_pResultSet(NULL)
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::OPreparedStatement" );
|
2002-01-16 07:43:41 +00:00
|
|
|
DBG_CTOR( file_OPreparedStatement, NULL );
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
2002-01-16 07:43:41 +00:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
OPreparedStatement::~OPreparedStatement()
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::~OPreparedStatement" );
|
2002-01-16 07:43:41 +00:00
|
|
|
DBG_DTOR( file_OPreparedStatement, NULL );
|
|
|
|
}
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
// -------------------------------------------------------------------------
|
2000-09-29 14:30:09 +00:00
|
|
|
void OPreparedStatement::disposing()
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::disposing" );
|
2001-08-24 05:19:41 +00:00
|
|
|
::osl::MutexGuard aGuard(m_aMutex);
|
|
|
|
|
2005-09-23 10:38:35 +00:00
|
|
|
clearMyResultSet();
|
|
|
|
OStatement_BASE2::disposing();
|
|
|
|
|
2001-08-24 05:19:41 +00:00
|
|
|
if(m_pResultSet)
|
2002-01-16 07:43:41 +00:00
|
|
|
{
|
2001-08-24 05:19:41 +00:00
|
|
|
m_pResultSet->release();
|
2002-01-16 07:43:41 +00:00
|
|
|
m_pResultSet = NULL;
|
|
|
|
}
|
2001-08-24 05:19:41 +00:00
|
|
|
|
2002-07-05 06:46:24 +00:00
|
|
|
m_xParamColumns = NULL;
|
2009-09-08 09:50:48 +00:00
|
|
|
m_xMetaData.clear();
|
2010-10-15 12:10:06 -05:00
|
|
|
if(m_aParameterRow.is())
|
2001-04-04 13:25:53 +00:00
|
|
|
{
|
2008-12-30 13:32:01 +00:00
|
|
|
m_aParameterRow->get().clear();
|
2001-08-24 05:19:41 +00:00
|
|
|
m_aParameterRow = NULL;
|
2001-04-04 13:25:53 +00:00
|
|
|
}
|
2001-10-01 10:24:29 +00:00
|
|
|
|
2002-07-05 06:46:24 +00:00
|
|
|
|
2000-09-29 14:30:09 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
2013-04-07 12:06:47 +02:00
|
|
|
void OPreparedStatement::construct(const OUString& sql) throw(SQLException, RuntimeException)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::construct" );
|
2001-08-24 05:19:41 +00:00
|
|
|
OStatement_Base::construct(sql);
|
2000-09-29 14:30:09 +00:00
|
|
|
|
2003-09-04 07:25:22 +00:00
|
|
|
m_aParameterRow = new OValueRefVector();
|
2008-12-30 13:32:01 +00:00
|
|
|
m_aParameterRow->get().push_back(new ORowSetValueDecorator(sal_Int32(0)) );
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2001-08-24 05:19:41 +00:00
|
|
|
Reference<XIndexAccess> xNames(m_xColNames,UNO_QUERY);
|
|
|
|
|
2002-07-05 06:46:24 +00:00
|
|
|
if ( m_aSQLIterator.getStatementType() == SQL_STATEMENT_SELECT )
|
|
|
|
m_xParamColumns = m_aSQLIterator.getParameters();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_xParamColumns = new OSQLColumns();
|
|
|
|
// describe all parameters need for the resultset
|
|
|
|
describeParameter();
|
|
|
|
}
|
2001-08-24 05:19:41 +00:00
|
|
|
|
2003-09-04 07:25:22 +00:00
|
|
|
OValueRefRow aTemp;
|
|
|
|
OResultSet::setBoundedColumns(m_aEvaluateRow,aTemp,m_xParamColumns,xNames,sal_False,m_xDBMetaData,m_aColMapping);
|
2001-08-24 05:19:41 +00:00
|
|
|
|
|
|
|
m_pResultSet = createResultSet();
|
|
|
|
m_pResultSet->acquire();
|
|
|
|
m_xResultSet = Reference<XResultSet>(m_pResultSet);
|
|
|
|
initializeResultSet(m_pResultSet);
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
Any SAL_CALL OPreparedStatement::queryInterface( const Type & rType ) throw(RuntimeException)
|
|
|
|
{
|
2000-09-29 14:30:09 +00:00
|
|
|
Any aRet = OStatement_BASE2::queryInterface(rType);
|
2001-08-24 05:19:41 +00:00
|
|
|
return aRet.hasValue() ? aRet : ::cppu::queryInterface( rType,
|
2000-09-18 15:18:56 +00:00
|
|
|
static_cast< XPreparedStatement*>(this),
|
|
|
|
static_cast< XParameters*>(this),
|
|
|
|
static_cast< XResultSetMetaDataSupplier*>(this));
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL OPreparedStatement::getTypes( ) throw(::com::sun::star::uno::RuntimeException)
|
|
|
|
{
|
|
|
|
::cppu::OTypeCollection aTypes( ::getCppuType( (const ::com::sun::star::uno::Reference< XPreparedStatement > *)0 ),
|
|
|
|
::getCppuType( (const ::com::sun::star::uno::Reference< XParameters > *)0 ),
|
|
|
|
::getCppuType( (const ::com::sun::star::uno::Reference< XResultSetMetaDataSupplier > *)0 ));
|
|
|
|
|
2000-10-09 11:34:19 +00:00
|
|
|
return ::comphelper::concatSequences(aTypes.getTypes(),OStatement_BASE2::getTypes());
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
Reference< XResultSetMetaData > SAL_CALL OPreparedStatement::getMetaData( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::getMetaData" );
|
2000-09-29 14:30:09 +00:00
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 05:46:55 +00:00
|
|
|
checkDisposed(OStatement_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-29 14:30:09 +00:00
|
|
|
|
2001-01-09 11:41:01 +00:00
|
|
|
if(!m_xMetaData.is())
|
2000-11-20 08:57:42 +00:00
|
|
|
m_xMetaData = new OResultSetMetaData(m_aSQLIterator.getSelectColumns(),m_aSQLIterator.getTables().begin()->first,m_pTable);
|
2000-09-18 15:18:56 +00:00
|
|
|
return m_xMetaData;
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::close( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::close" );
|
2000-09-29 14:30:09 +00:00
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 05:46:55 +00:00
|
|
|
checkDisposed(OStatement_BASE::rBHelper.bDisposed);
|
|
|
|
|
2001-04-06 13:03:08 +00:00
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
clearMyResultSet();
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
sal_Bool SAL_CALL OPreparedStatement::execute( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::execute" );
|
2000-09-29 14:30:09 +00:00
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 05:46:55 +00:00
|
|
|
checkDisposed(OStatement_BASE::rBHelper.bDisposed);
|
|
|
|
|
2001-07-30 07:53:02 +00:00
|
|
|
initResultSet();
|
2001-04-06 13:03:08 +00:00
|
|
|
|
2006-07-10 13:26:23 +00:00
|
|
|
return m_aSQLIterator.getStatementType() == SQL_STATEMENT_SELECT;
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
sal_Int32 SAL_CALL OPreparedStatement::executeUpdate( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::executeUpdate" );
|
2000-09-29 14:30:09 +00:00
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 05:46:55 +00:00
|
|
|
checkDisposed(OStatement_BASE::rBHelper.bDisposed);
|
|
|
|
|
2001-07-30 07:53:02 +00:00
|
|
|
initResultSet();
|
2000-09-29 14:30:09 +00:00
|
|
|
|
2001-04-06 13:03:08 +00:00
|
|
|
return m_pResultSet ? m_pResultSet->getRowCountResult() : sal_Int32(0);
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
2013-04-07 12:06:47 +02:00
|
|
|
void SAL_CALL OPreparedStatement::setString( sal_Int32 parameterIndex, const OUString& x ) throw(SQLException, RuntimeException)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setString" );
|
2001-07-23 06:55:59 +00:00
|
|
|
setParameter(parameterIndex,x);
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
Reference< XConnection > SAL_CALL OPreparedStatement::getConnection( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::getConnection" );
|
2000-09-29 14:30:09 +00:00
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 05:46:55 +00:00
|
|
|
checkDisposed(OStatement_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-29 14:30:09 +00:00
|
|
|
return (Reference< XConnection >)m_pConnection;
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
Reference< XResultSet > SAL_CALL OPreparedStatement::executeQuery( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::executeQuery" );
|
2000-09-29 14:30:09 +00:00
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 05:46:55 +00:00
|
|
|
checkDisposed(OStatement_BASE::rBHelper.bDisposed);
|
|
|
|
|
2001-07-30 07:53:02 +00:00
|
|
|
return initResultSet();
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setBoolean( sal_Int32 parameterIndex, sal_Bool x ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setBoolean" );
|
2013-02-04 11:12:57 +01:00
|
|
|
setParameter(parameterIndex,static_cast<bool>(x));
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OPreparedStatement::setByte( sal_Int32 parameterIndex, sal_Int8 x ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setByte" );
|
2001-07-23 06:55:59 +00:00
|
|
|
setParameter(parameterIndex,x);
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
2012-12-09 16:59:27 +01:00
|
|
|
void SAL_CALL OPreparedStatement::setDate( sal_Int32 parameterIndex, const util::Date& aData ) throw(SQLException, RuntimeException)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setDate" );
|
2001-07-23 06:55:59 +00:00
|
|
|
setParameter(parameterIndex,DBTypeConversion::toDouble(aData));
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
2012-12-09 16:59:27 +01:00
|
|
|
void SAL_CALL OPreparedStatement::setTime( sal_Int32 parameterIndex, const util::Time& aVal ) throw(SQLException, RuntimeException)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setTime" );
|
2001-07-23 06:55:59 +00:00
|
|
|
setParameter(parameterIndex,DBTypeConversion::toDouble(aVal));
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
2012-12-09 16:59:27 +01:00
|
|
|
void SAL_CALL OPreparedStatement::setTimestamp( sal_Int32 parameterIndex, const util::DateTime& aVal ) throw(SQLException, RuntimeException)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setTimestamp" );
|
2001-07-23 06:55:59 +00:00
|
|
|
setParameter(parameterIndex,DBTypeConversion::toDouble(aVal));
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setDouble( sal_Int32 parameterIndex, double x ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setDouble" );
|
2001-07-23 06:55:59 +00:00
|
|
|
setParameter(parameterIndex,x);
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setFloat( sal_Int32 parameterIndex, float x ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setFloat" );
|
2001-07-23 06:55:59 +00:00
|
|
|
setParameter(parameterIndex,x);
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setInt( sal_Int32 parameterIndex, sal_Int32 x ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setInt" );
|
2001-07-23 06:55:59 +00:00
|
|
|
setParameter(parameterIndex,x);
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
2006-06-20 00:25:53 +00:00
|
|
|
void SAL_CALL OPreparedStatement::setLong( sal_Int32 /*parameterIndex*/, sal_Int64 /*aVal*/ ) throw(SQLException, RuntimeException)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setLong" );
|
2006-06-20 00:25:53 +00:00
|
|
|
throwFeatureNotImplementedException( "XParameters::setLong", *this );
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
2006-06-20 00:25:53 +00:00
|
|
|
void SAL_CALL OPreparedStatement::setNull( sal_Int32 parameterIndex, sal_Int32 /*sqlType*/ ) throw(SQLException, RuntimeException)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setNull" );
|
2000-09-29 14:30:09 +00:00
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-07-23 06:55:59 +00:00
|
|
|
checkAndResizeParameters(parameterIndex);
|
2001-05-17 05:46:55 +00:00
|
|
|
|
2010-10-15 12:10:06 -05:00
|
|
|
if ( m_aAssignValues.is() )
|
2008-12-30 13:32:01 +00:00
|
|
|
(m_aAssignValues->get())[m_aParameterIndexes[parameterIndex]]->setNull();
|
2001-08-24 05:19:41 +00:00
|
|
|
else
|
2008-12-30 13:32:01 +00:00
|
|
|
(m_aParameterRow->get())[parameterIndex]->setNull();
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
2006-06-20 00:25:53 +00:00
|
|
|
void SAL_CALL OPreparedStatement::setClob( sal_Int32 /*parameterIndex*/, const Reference< XClob >& /*x*/ ) throw(SQLException, RuntimeException)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setClob" );
|
2006-06-20 00:25:53 +00:00
|
|
|
throwFeatureNotImplementedException( "XParameters::setClob", *this );
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
2006-06-20 00:25:53 +00:00
|
|
|
void SAL_CALL OPreparedStatement::setBlob( sal_Int32 /*parameterIndex*/, const Reference< XBlob >& /*x*/ ) throw(SQLException, RuntimeException)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setBlob" );
|
2006-06-20 00:25:53 +00:00
|
|
|
throwFeatureNotImplementedException( "XParameters::setBlob", *this );
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
2006-06-20 00:25:53 +00:00
|
|
|
void SAL_CALL OPreparedStatement::setArray( sal_Int32 /*parameterIndex*/, const Reference< XArray >& /*x*/ ) throw(SQLException, RuntimeException)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setArray" );
|
2006-06-20 00:25:53 +00:00
|
|
|
throwFeatureNotImplementedException( "XParameters::setArray", *this );
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
2006-06-20 00:25:53 +00:00
|
|
|
void SAL_CALL OPreparedStatement::setRef( sal_Int32 /*parameterIndex*/, const Reference< XRef >& /*x*/ ) throw(SQLException, RuntimeException)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setRef" );
|
2006-06-20 00:25:53 +00:00
|
|
|
throwFeatureNotImplementedException( "XParameters::setRef", *this );
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setObjectWithInfo( sal_Int32 parameterIndex, const Any& x, sal_Int32 sqlType, sal_Int32 scale ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setObjectWithInfo" );
|
2008-01-30 06:52:24 +00:00
|
|
|
switch(sqlType)
|
|
|
|
{
|
|
|
|
case DataType::DECIMAL:
|
|
|
|
case DataType::NUMERIC:
|
|
|
|
setString(parameterIndex,::comphelper::getString(x));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
::dbtools::setObjectWithInfo(this,parameterIndex,x,sqlType,scale);
|
|
|
|
break;
|
|
|
|
}
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
2013-04-07 12:06:47 +02:00
|
|
|
void SAL_CALL OPreparedStatement::setObjectNull( sal_Int32 parameterIndex, sal_Int32 sqlType, const OUString& /*typeName*/ ) throw(SQLException, RuntimeException)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setObjectNull" );
|
2001-07-23 06:55:59 +00:00
|
|
|
setNull(parameterIndex,sqlType);
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
void SAL_CALL OPreparedStatement::setObject( sal_Int32 parameterIndex, const Any& x ) throw(SQLException, RuntimeException)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setObject" );
|
2009-04-23 10:42:05 +00:00
|
|
|
if(!::dbtools::implSetObject(this,parameterIndex,x))
|
|
|
|
{
|
2013-04-07 12:06:47 +02:00
|
|
|
const OUString sError( m_pConnection->getResources().getResourceStringWithSubstitution(
|
2009-04-23 10:42:05 +00:00
|
|
|
STR_UNKNOWN_PARA_TYPE,
|
2013-04-07 12:06:47 +02:00
|
|
|
"$position$", OUString::valueOf(parameterIndex)
|
2009-04-23 10:42:05 +00:00
|
|
|
) );
|
|
|
|
::dbtools::throwGenericSQLException(sError,*this);
|
|
|
|
}
|
2000-09-18 15:18:56 +00:00
|
|
|
// setObject (parameterIndex, x, sqlType, 0);
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setShort( sal_Int32 parameterIndex, sal_Int16 x ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setShort" );
|
2001-07-23 06:55:59 +00:00
|
|
|
setParameter(parameterIndex,x);
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setBytes( sal_Int32 parameterIndex, const Sequence< sal_Int8 >& x ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setBytes" );
|
2001-07-30 07:53:02 +00:00
|
|
|
setParameter(parameterIndex,x);
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setCharacterStream( sal_Int32 parameterIndex, const Reference< ::com::sun::star::io::XInputStream >& x, sal_Int32 length ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setCharacterStream" );
|
2001-07-30 07:53:02 +00:00
|
|
|
setBinaryStream(parameterIndex,x,length );
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setBinaryStream( sal_Int32 parameterIndex, const Reference< ::com::sun::star::io::XInputStream >& x, sal_Int32 length ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setBinaryStream" );
|
2001-07-30 07:53:02 +00:00
|
|
|
if(!x.is())
|
|
|
|
::dbtools::throwFunctionSequenceException(*this);
|
2001-05-17 05:46:55 +00:00
|
|
|
|
2001-07-30 07:53:02 +00:00
|
|
|
Sequence<sal_Int8> aSeq;
|
2008-12-01 12:31:27 +00:00
|
|
|
x->readBytes(aSeq,length);
|
2001-07-30 07:53:02 +00:00
|
|
|
setParameter(parameterIndex,aSeq);
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::clearParameters( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::clearParameters" );
|
2000-09-29 14:30:09 +00:00
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 05:46:55 +00:00
|
|
|
checkDisposed(OStatement_BASE::rBHelper.bDisposed);
|
|
|
|
|
2008-12-30 13:32:01 +00:00
|
|
|
m_aParameterRow->get().clear();
|
|
|
|
m_aParameterRow->get().push_back(new ORowSetValueDecorator(sal_Int32(0)) );
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
2000-09-29 14:30:09 +00:00
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
OResultSet* OPreparedStatement::createResultSet()
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::createResultSet" );
|
2000-09-29 14:30:09 +00:00
|
|
|
return new OResultSet(this,m_aSQLIterator);
|
|
|
|
}
|
2001-04-06 13:03:08 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
Reference<XResultSet> OPreparedStatement::initResultSet()
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::initResultSet" );
|
2001-08-24 05:19:41 +00:00
|
|
|
m_pResultSet->clear();
|
2001-04-06 13:03:08 +00:00
|
|
|
Reference<XResultSet> xRs(m_pResultSet);
|
2001-08-24 05:19:41 +00:00
|
|
|
|
2012-06-19 16:43:41 +02:00
|
|
|
// check if we got enough parameters
|
2010-10-15 12:10:06 -05:00
|
|
|
if ( (m_aParameterRow.is() && ( m_aParameterRow->get().size() -1 ) < m_xParamColumns->get().size()) ||
|
|
|
|
(m_xParamColumns.is() && !m_aParameterRow.is() && !m_aParameterRow->get().empty()) )
|
2008-10-01 12:28:29 +00:00
|
|
|
m_pConnection->throwGenericSQLException(STR_INVALID_PARA_COUNT,*this);
|
2002-05-03 09:00:41 +00:00
|
|
|
|
2001-04-06 13:03:08 +00:00
|
|
|
m_pResultSet->OpenImpl();
|
2007-09-26 13:28:47 +00:00
|
|
|
m_pResultSet->setMetaData(getMetaData());
|
2001-08-24 05:19:41 +00:00
|
|
|
|
2001-04-06 13:03:08 +00:00
|
|
|
return xRs;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2001-10-17 16:18:22 +00:00
|
|
|
void SAL_CALL OPreparedStatement::acquire() throw()
|
2001-04-30 09:16:19 +00:00
|
|
|
{
|
|
|
|
OStatement_BASE2::acquire();
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2001-10-17 16:18:22 +00:00
|
|
|
void SAL_CALL OPreparedStatement::release() throw()
|
2001-04-30 09:16:19 +00:00
|
|
|
{
|
|
|
|
OStatement_BASE2::release();
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2001-07-23 06:55:59 +00:00
|
|
|
void OPreparedStatement::checkAndResizeParameters(sal_Int32 parameterIndex)
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::checkAndResizeParameters" );
|
2001-07-23 06:55:59 +00:00
|
|
|
::connectivity::checkDisposed(OStatement_BASE::rBHelper.bDisposed);
|
2010-10-15 12:10:06 -05:00
|
|
|
if ( m_aAssignValues.is() && (parameterIndex < 1 || parameterIndex >= static_cast<sal_Int32>(m_aParameterIndexes.size())) )
|
2001-07-23 06:55:59 +00:00
|
|
|
throwInvalidIndexException(*this);
|
2008-12-30 13:32:01 +00:00
|
|
|
else if ( static_cast<sal_Int32>((m_aParameterRow->get()).size()) <= parameterIndex )
|
2003-09-04 07:25:22 +00:00
|
|
|
{
|
2008-12-30 13:32:01 +00:00
|
|
|
sal_Int32 i = m_aParameterRow->get().size();
|
|
|
|
(m_aParameterRow->get()).resize(parameterIndex+1);
|
2003-09-04 07:25:22 +00:00
|
|
|
for ( ;i <= parameterIndex+1; ++i )
|
|
|
|
{
|
2010-10-15 12:10:06 -05:00
|
|
|
if ( !(m_aParameterRow->get())[i].is() )
|
2008-12-30 13:32:01 +00:00
|
|
|
(m_aParameterRow->get())[i] = new ORowSetValueDecorator;
|
2003-09-04 07:25:22 +00:00
|
|
|
}
|
|
|
|
}
|
2001-07-23 06:55:59 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void OPreparedStatement::setParameter(sal_Int32 parameterIndex, const ORowSetValue& x)
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::setParameter" );
|
2001-07-23 06:55:59 +00:00
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
checkAndResizeParameters(parameterIndex);
|
|
|
|
|
2010-10-15 12:10:06 -05:00
|
|
|
if(m_aAssignValues.is())
|
2008-12-30 13:32:01 +00:00
|
|
|
*(m_aAssignValues->get())[m_aParameterIndexes[parameterIndex]] = x;
|
2001-08-24 05:19:41 +00:00
|
|
|
else
|
2008-12-30 13:32:01 +00:00
|
|
|
*((m_aParameterRow->get())[parameterIndex]) = x;
|
2001-07-23 06:55:59 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2011-01-07 18:04:22 +01:00
|
|
|
sal_uInt32 OPreparedStatement::AddParameter(OSQLParseNode * pParameter, const Reference<XPropertySet>& _xCol)
|
2001-08-24 05:19:41 +00:00
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::AddParameter" );
|
2006-06-20 00:25:53 +00:00
|
|
|
OSL_UNUSED( pParameter );
|
2001-08-24 05:19:41 +00:00
|
|
|
OSL_ENSURE(SQL_ISRULE(pParameter,parameter),"OResultSet::AddParameter: Argument ist kein Parameter");
|
|
|
|
OSL_ENSURE(pParameter->count() > 0,"OResultSet: Fehler im Parse Tree");
|
2006-06-20 00:25:53 +00:00
|
|
|
#if OSL_DEBUG_LEVEL > 0
|
2001-08-24 05:19:41 +00:00
|
|
|
OSQLParseNode * pMark = pParameter->getChild(0);
|
2006-06-20 00:25:53 +00:00
|
|
|
OSL_UNUSED( pMark );
|
|
|
|
#endif
|
2001-08-24 05:19:41 +00:00
|
|
|
|
2013-04-07 12:06:47 +02:00
|
|
|
OUString sParameterName;
|
2011-02-15 21:45:45 +01:00
|
|
|
// set up Parameter-Column:
|
2001-08-24 05:19:41 +00:00
|
|
|
sal_Int32 eType = DataType::VARCHAR;
|
2011-01-07 18:04:22 +01:00
|
|
|
sal_uInt32 nPrecision = 255;
|
2001-08-24 05:19:41 +00:00
|
|
|
sal_Int32 nScale = 0;
|
|
|
|
sal_Int32 nNullable = ColumnValue::NULLABLE;
|
|
|
|
|
|
|
|
if (_xCol.is())
|
|
|
|
{
|
2011-02-15 21:45:45 +01:00
|
|
|
// Use type, precision, scale ... from the given column,
|
|
|
|
// because this Column will get a value assigned or
|
|
|
|
// with this Column the value will be compared.
|
2002-07-05 06:46:24 +00:00
|
|
|
_xCol->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPE)) >>= eType;
|
|
|
|
_xCol->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_PRECISION)) >>= nPrecision;
|
|
|
|
_xCol->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_SCALE)) >>= nScale;
|
|
|
|
_xCol->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISNULLABLE)) >>= nNullable;
|
|
|
|
_xCol->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_NAME)) >>= sParameterName;
|
2001-08-24 05:19:41 +00:00
|
|
|
}
|
|
|
|
|
2002-07-05 06:46:24 +00:00
|
|
|
Reference<XPropertySet> xParaColumn = new connectivity::parse::OParseColumn(sParameterName
|
2013-04-07 12:06:47 +02:00
|
|
|
,OUString()
|
|
|
|
,OUString()
|
|
|
|
,OUString()
|
2001-08-24 05:19:41 +00:00
|
|
|
,nNullable
|
|
|
|
,nPrecision
|
|
|
|
,nScale
|
|
|
|
,eType
|
|
|
|
,sal_False
|
|
|
|
,sal_False
|
2012-11-01 14:19:14 +01:00
|
|
|
,m_aSQLIterator.isCaseSensitive()
|
2013-04-07 12:06:47 +02:00
|
|
|
,OUString()
|
|
|
|
,OUString()
|
|
|
|
,OUString());
|
2008-12-30 13:32:01 +00:00
|
|
|
m_xParamColumns->get().push_back(xParaColumn);
|
|
|
|
return m_xParamColumns->get().size();
|
2001-08-24 05:19:41 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void OPreparedStatement::describeColumn(OSQLParseNode* _pParameter,OSQLParseNode* _pNode,const OSQLTable& _xTable)
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::describeColumn" );
|
2001-08-24 05:19:41 +00:00
|
|
|
Reference<XPropertySet> xProp;
|
|
|
|
if(SQL_ISRULE(_pNode,column_ref))
|
|
|
|
{
|
2013-04-07 12:06:47 +02:00
|
|
|
OUString sColumnName,sTableRange;
|
2001-08-24 05:19:41 +00:00
|
|
|
m_aSQLIterator.getColumnRange(_pNode,sColumnName,sTableRange);
|
2011-12-14 23:13:36 -02:00
|
|
|
if ( !sColumnName.isEmpty() )
|
2001-08-24 05:19:41 +00:00
|
|
|
{
|
|
|
|
Reference<XNameAccess> xNameAccess = _xTable->getColumns();
|
|
|
|
if(xNameAccess->hasByName(sColumnName))
|
|
|
|
xNameAccess->getByName(sColumnName) >>= xProp;
|
|
|
|
AddParameter(_pParameter,xProp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// else
|
|
|
|
// AddParameter(_pParameter,xProp);
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
void OPreparedStatement::describeParameter()
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::describeParameter" );
|
2001-08-24 05:19:41 +00:00
|
|
|
::std::vector< OSQLParseNode*> aParseNodes;
|
|
|
|
scanParameter(m_pParseTree,aParseNodes);
|
2002-07-05 06:46:24 +00:00
|
|
|
if ( !aParseNodes.empty() )
|
2001-08-24 05:19:41 +00:00
|
|
|
{
|
2002-07-05 06:46:24 +00:00
|
|
|
// m_xParamColumns = new OSQLColumns();
|
2001-08-24 05:19:41 +00:00
|
|
|
const OSQLTables& xTabs = m_aSQLIterator.getTables();
|
2002-07-05 06:46:24 +00:00
|
|
|
if( !xTabs.empty() )
|
2001-08-24 05:19:41 +00:00
|
|
|
{
|
|
|
|
OSQLTable xTable = xTabs.begin()->second;
|
|
|
|
::std::vector< OSQLParseNode*>::const_iterator aIter = aParseNodes.begin();
|
|
|
|
for (;aIter != aParseNodes.end();++aIter )
|
|
|
|
{
|
|
|
|
describeColumn(*aIter,(*aIter)->getParent()->getChild(0),xTable);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void OPreparedStatement::initializeResultSet(OResultSet* _pResult)
|
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::initializeResultSet" );
|
2001-08-24 05:19:41 +00:00
|
|
|
OStatement_Base::initializeResultSet(_pResult);
|
2001-10-01 10:24:29 +00:00
|
|
|
|
2001-08-24 05:19:41 +00:00
|
|
|
m_pResultSet->setParameterColumns(m_xParamColumns);
|
|
|
|
m_pResultSet->setParameterRow(m_aParameterRow);
|
|
|
|
|
2011-02-15 21:45:45 +01:00
|
|
|
// Substitute parameter (AssignValues and criteria):
|
2008-12-30 13:32:01 +00:00
|
|
|
if (!m_xParamColumns->get().empty())
|
2001-08-24 05:19:41 +00:00
|
|
|
{
|
2011-02-15 21:45:45 +01:00
|
|
|
// begin with AssignValues
|
2011-03-12 02:42:58 +01:00
|
|
|
sal_uInt16 nParaCount=0; // gives the current number of previously set Parameters
|
2001-08-24 05:19:41 +00:00
|
|
|
|
2011-02-15 21:45:45 +01:00
|
|
|
// search for parameters to be substituted:
|
|
|
|
size_t nCount = m_aAssignValues.is() ? m_aAssignValues->get().size() : 1; // 1 is important for the Criteria
|
2006-06-20 00:25:53 +00:00
|
|
|
for (size_t j = 1; j < nCount; j++)
|
2001-08-24 05:19:41 +00:00
|
|
|
{
|
2011-01-07 18:04:22 +01:00
|
|
|
sal_uInt32 nParameter = (*m_aAssignValues).getParameterIndex(j);
|
2001-08-24 05:19:41 +00:00
|
|
|
if (nParameter == SQL_NO_PARAMETER)
|
2011-02-15 21:45:45 +01:00
|
|
|
continue; // this AssignValue is no Parameter
|
2001-08-24 05:19:41 +00:00
|
|
|
|
2011-02-15 21:45:45 +01:00
|
|
|
++nParaCount; // now the Parameter is valid
|
2001-08-24 05:19:41 +00:00
|
|
|
}
|
|
|
|
|
2010-10-15 12:10:06 -05:00
|
|
|
if (m_aParameterRow.is() && (m_xParamColumns->get().size()+1) != m_aParameterRow->get().size() )
|
2005-01-21 15:39:14 +00:00
|
|
|
{
|
2008-12-30 13:32:01 +00:00
|
|
|
sal_Int32 i = m_aParameterRow->get().size();
|
|
|
|
sal_Int32 nParamColumns = m_xParamColumns->get().size()+1;
|
|
|
|
m_aParameterRow->get().resize(nParamColumns);
|
2007-09-26 13:28:47 +00:00
|
|
|
for ( ;i < nParamColumns; ++i )
|
2005-01-21 15:39:14 +00:00
|
|
|
{
|
2010-10-15 12:10:06 -05:00
|
|
|
if ( !(m_aParameterRow->get())[i].is() )
|
2008-12-30 13:32:01 +00:00
|
|
|
(m_aParameterRow->get())[i] = new ORowSetValueDecorator;
|
2005-01-21 15:39:14 +00:00
|
|
|
}
|
|
|
|
}
|
2010-10-15 12:10:06 -05:00
|
|
|
if (m_aParameterRow.is() && nParaCount < m_aParameterRow->get().size() )
|
2001-08-24 05:19:41 +00:00
|
|
|
m_pSQLAnalyzer->bindParameterRow(m_aParameterRow);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2013-07-19 01:31:53 -05:00
|
|
|
void OPreparedStatement::parseParamterElem(const OUString& _sColumnName, OSQLParseNode* pRow_Value_Constructor_Elem)
|
2001-12-03 11:11:40 +00:00
|
|
|
{
|
2013-06-15 01:56:13 +03:00
|
|
|
SAL_INFO( "connectivity.drivers", "file Ocke.Janssen@sun.com OPreparedStatement::parseParamterElem" );
|
2001-12-03 11:11:40 +00:00
|
|
|
Reference<XPropertySet> xCol;
|
|
|
|
m_xColNames->getByName(_sColumnName) >>= xCol;
|
|
|
|
sal_Int32 nParameter = -1;
|
2010-10-15 12:10:06 -05:00
|
|
|
if(m_xParamColumns.is())
|
2001-12-03 11:11:40 +00:00
|
|
|
{
|
2008-12-30 13:32:01 +00:00
|
|
|
OSQLColumns::Vector::const_iterator aIter = find(m_xParamColumns->get().begin(),m_xParamColumns->get().end(),_sColumnName,::comphelper::UStringMixEqual(m_pTable->isCaseSensitive()));
|
|
|
|
if(aIter != m_xParamColumns->get().end())
|
|
|
|
nParameter = m_xParamColumns->get().size() - (m_xParamColumns->get().end() - aIter) + 1;// +1 because the rows start at 1
|
2001-12-03 11:11:40 +00:00
|
|
|
}
|
|
|
|
if(nParameter == -1)
|
|
|
|
nParameter = AddParameter(pRow_Value_Constructor_Elem,xCol);
|
2011-02-15 21:45:45 +01:00
|
|
|
// Save number of parameter in the variable:
|
2013-07-19 01:31:53 -05:00
|
|
|
SetAssignValue(_sColumnName, OUString(), sal_True, nParameter);
|
2001-12-03 11:11:40 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2001-08-24 05:19:41 +00:00
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2010-10-12 15:53:47 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|