Files
libreoffice/connectivity/source/drivers/file/FPreparedStatement.cxx

590 lines
24 KiB
C++
Raw Normal View History

2000-09-18 15:18:56 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-18 15:18:56 +00:00
*
* Copyright 2008 by Sun Microsystems, Inc.
2000-09-18 15:18:56 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 15:18:56 +00:00
*
* $RCSfile: FPreparedStatement.cxx,v $
2008-10-01 12:28:29 +00:00
* $Revision: 1.42.56.1 $
2000-09-18 15:18:56 +00:00
*
* This file is part of OpenOffice.org.
2000-09-18 15:18:56 +00:00
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
2000-09-18 15:18:56 +00:00
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
2000-09-18 15:18:56 +00:00
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
2000-09-18 15:18:56 +00:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_connectivity.hxx"
2000-12-06 10:51:16 +00:00
#include <stdio.h>
#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"
#include "connectivity/PColumn.hxx"
#include "diagnose_ex.h"
#include <comphelper/types.hxx>
#include <com/sun/star/sdbc/ColumnValue.hpp>
#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;
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;
using namespace com::sun::star::util;
IMPLEMENT_SERVICE_INFO(OPreparedStatement,"com.sun.star.sdbc.driver.file.PreparedStatement","com.sun.star.sdbc.PreparedStatement");
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)
{
DBG_CTOR( file_OPreparedStatement, NULL );
2000-09-18 15:18:56 +00:00
}
// -------------------------------------------------------------------------
OPreparedStatement::~OPreparedStatement()
{
DBG_DTOR( file_OPreparedStatement, NULL );
}
2000-09-18 15:18:56 +00:00
// -------------------------------------------------------------------------
2000-09-29 14:30:09 +00:00
void OPreparedStatement::disposing()
{
::osl::MutexGuard aGuard(m_aMutex);
clearMyResultSet();
OStatement_BASE2::disposing();
if(m_pResultSet)
{
m_pResultSet->release();
m_pResultSet = NULL;
}
m_xParamColumns = NULL;
2000-09-29 14:30:09 +00:00
2000-11-03 13:21:22 +00:00
m_xMetaData = NULL;
if(m_aParameterRow.isValid())
2001-04-04 13:25:53 +00:00
{
m_aParameterRow->clear();
m_aParameterRow = NULL;
2001-04-04 13:25:53 +00:00
}
2001-10-01 10:24:29 +00:00
2000-09-29 14:30:09 +00:00
}
// -------------------------------------------------------------------------
2000-09-18 15:18:56 +00:00
void OPreparedStatement::construct(const ::rtl::OUString& sql) throw(SQLException, RuntimeException)
{
OStatement_Base::construct(sql);
2000-09-29 14:30:09 +00:00
m_aParameterRow = new OValueRefVector();
m_aParameterRow->push_back(new ORowSetValueDecorator(sal_Int32(0)) );
2000-09-18 15:18:56 +00:00
Reference<XIndexAccess> xNames(m_xColNames,UNO_QUERY);
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();
}
OValueRefRow aTemp;
OResultSet::setBoundedColumns(m_aEvaluateRow,aTemp,m_xParamColumns,xNames,sal_False,m_xDBMetaData,m_aColMapping);
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);
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)
{
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)
{
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)
{
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
return m_aSQLIterator.getStatementType() == SQL_STATEMENT_SELECT;
2000-09-18 15:18:56 +00:00
}
// -------------------------------------------------------------------------
sal_Int32 SAL_CALL OPreparedStatement::executeUpdate( ) throw(SQLException, RuntimeException)
{
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
}
// -------------------------------------------------------------------------
void SAL_CALL OPreparedStatement::setString( sal_Int32 parameterIndex, const ::rtl::OUString& x ) throw(SQLException, RuntimeException)
{
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)
{
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)
{
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)
{
2001-07-23 06:55:59 +00:00
setParameter(parameterIndex,x);
2000-09-18 15:18:56 +00:00
}
// -------------------------------------------------------------------------
void SAL_CALL OPreparedStatement::setByte( sal_Int32 parameterIndex, sal_Int8 x ) throw(SQLException, RuntimeException)
{
2001-07-23 06:55:59 +00:00
setParameter(parameterIndex,x);
2000-09-18 15:18:56 +00:00
}
// -------------------------------------------------------------------------
void SAL_CALL OPreparedStatement::setDate( sal_Int32 parameterIndex, const Date& aData ) throw(SQLException, RuntimeException)
{
2001-07-23 06:55:59 +00:00
setParameter(parameterIndex,DBTypeConversion::toDouble(aData));
2000-09-18 15:18:56 +00:00
}
// -------------------------------------------------------------------------
void SAL_CALL OPreparedStatement::setTime( sal_Int32 parameterIndex, const Time& aVal ) throw(SQLException, RuntimeException)
{
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::setTimestamp( sal_Int32 parameterIndex, const DateTime& aVal ) throw(SQLException, RuntimeException)
{
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)
{
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)
{
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)
{
2001-07-23 06:55:59 +00:00
setParameter(parameterIndex,x);
2000-09-18 15:18:56 +00:00
}
// -------------------------------------------------------------------------
void SAL_CALL OPreparedStatement::setLong( sal_Int32 /*parameterIndex*/, sal_Int64 /*aVal*/ ) throw(SQLException, RuntimeException)
2000-09-18 15:18:56 +00:00
{
throwFeatureNotImplementedException( "XParameters::setLong", *this );
2000-09-18 15:18:56 +00:00
}
// -------------------------------------------------------------------------
void SAL_CALL OPreparedStatement::setNull( sal_Int32 parameterIndex, sal_Int32 /*sqlType*/ ) throw(SQLException, RuntimeException)
2000-09-18 15:18:56 +00:00
{
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
if ( m_aAssignValues.isValid() )
(*m_aAssignValues)[m_aParameterIndexes[parameterIndex]]->setNull();
else
(*m_aParameterRow)[parameterIndex]->setNull();
2000-09-18 15:18:56 +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
{
throwFeatureNotImplementedException( "XParameters::setClob", *this );
2000-09-18 15:18:56 +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
{
throwFeatureNotImplementedException( "XParameters::setBlob", *this );
2000-09-18 15:18:56 +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
{
throwFeatureNotImplementedException( "XParameters::setArray", *this );
2000-09-18 15:18:56 +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
{
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)
{
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
}
// -------------------------------------------------------------------------
void SAL_CALL OPreparedStatement::setObjectNull( sal_Int32 parameterIndex, sal_Int32 sqlType, const ::rtl::OUString& /*typeName*/ ) throw(SQLException, RuntimeException)
2000-09-18 15:18:56 +00:00
{
2001-07-23 06:55:59 +00:00
setNull(parameterIndex,sqlType);
2000-09-18 15:18:56 +00:00
}
// -------------------------------------------------------------------------
void SAL_CALL OPreparedStatement::setObject( sal_Int32 /*parameterIndex*/, const Any& /*x*/ ) throw(SQLException, RuntimeException)
2000-09-18 15:18:56 +00:00
{
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);
throwFeatureNotImplementedException( "XParameters::setObject", *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)
{
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)
{
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)
{
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)
{
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;
CWS-TOOLING: integrate CWS dba31e 2008-11-19 12:36:23 +0100 msc r263980 : i96104 2008-11-19 12:31:19 +0100 msc r263979 : i96104 2008-11-19 12:21:55 +0100 msc r263977 : i96104 2008-11-19 12:18:53 +0100 msc r263976 : i96104 2008-11-18 09:09:45 +0100 oj r263746 : disable color entry when area is set 2008-11-18 08:37:52 +0100 oj r263741 : #remove sub report entry 2008-11-17 11:20:25 +0100 fs r263708 : #i10000# 2008-11-17 11:06:52 +0100 fs r263706 : minimal version now is 3.1 2008-11-12 22:25:59 +0100 fs r263621 : #i96150# 2008-11-12 22:20:02 +0100 fs r263620 : rebased to m34 2008-11-12 21:39:41 +0100 fs r263618 : MANUAL REBASE: rebase CWS dba31d to DEV300_m34 2008-11-12 13:54:58 +0100 fs r263597 : #i96134# MediaDescriptor.URL is to be preferred over MediaDescriptor.FileName. Nonetheless, ensure both are handled 2008-11-12 13:53:40 +0100 fs r263596 : #i96134# re-enabled the code for #i41897#, a better fix is to come 2008-11-12 12:48:21 +0100 fs r263585 : #i96134# disable saving URLs of file-base databases relatively 2008-11-11 16:11:11 +0100 msc r263566 : #i96104# 2008-11-05 09:09:47 +0100 oj r263342 : #i88727# color noe added 2008-11-05 08:41:43 +0100 oj r263341 : #i77916# zoom added 2008-11-04 21:24:15 +0100 fs r263339 : disposing: call disposeAndClear without own mutex locked - some of our listeners insist on locking the SolarMutex, which sometimes led to deadlocks on the complex test cases 2008-11-04 21:23:15 +0100 fs r263338 : remove SolarMutex locking - this happned in CWS dba31c (in the CVS version), which this CWS was created from, but seems to got lost during resync 2008-11-04 20:49:50 +0100 fs r263335 : docu formatting 2008-11-04 20:06:39 +0100 fs r263334 : #i95826# use m_aMutex, not a DocumentGuard (wrongly resolved merge conflicts) 2008-11-04 17:36:29 +0100 fs r263332 : #i92688# properly revoke as XEventListener from m_xActiveController when disposing 2008-11-04 14:49:34 +0100 fs r263324 : #i92322# enable Input Required if EmptyIsNULL does not exist at the control 2008-10-31 11:10:04 +0100 oj r262857 : merge from cvs to svn 2008-10-31 09:46:45 +0100 oj r262853 : merge from cvs to svn 2008-10-31 08:46:37 +0100 oj r262849 : merge from cvs to svn 2008-10-31 08:44:24 +0100 oj r262848 : merge from cvs to svn 2008-10-31 08:43:33 +0100 oj r262847 : merge from cvs to svn 2008-10-31 08:42:28 +0100 oj r262846 : merge from cvs to svn 2008-10-31 08:41:58 +0100 oj r262845 : merge from cvs to svn 2008-10-31 08:41:32 +0100 oj r262844 : merge from cvs to svn 2008-10-28 12:19:50 +0100 oj r262733 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:42 +0100 oj r262732 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:36 +0100 oj r262731 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:31 +0100 oj r262730 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:22 +0100 oj r262729 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:18 +0100 oj r262728 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:10 +0100 oj r262727 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:06 +0100 oj r262726 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:05 +0100 oj r262725 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:01 +0100 oj r262724 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:18:50 +0100 oj r262723 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:18:41 +0100 oj r262722 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:18:40 +0100 oj r262721 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:18:27 +0100 oj r262720 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:18:10 +0100 oj r262719 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:18:01 +0100 oj r262718 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:17:39 +0100 oj r262717 : #iXXXXX#: migrate CWS dba31e to SVN
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)
{
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);
m_aParameterRow->clear();
m_aParameterRow->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()
{
return new OResultSet(this,m_aSQLIterator);
}
2001-04-06 13:03:08 +00:00
// -----------------------------------------------------------------------------
Reference<XResultSet> OPreparedStatement::initResultSet()
{
m_pResultSet->clear();
2001-04-06 13:03:08 +00:00
Reference<XResultSet> xRs(m_pResultSet);
// check if we got enough paramters
if ( (m_aParameterRow.isValid() && ( m_aParameterRow->size() -1 ) < m_xParamColumns->size()) ||
(m_xParamColumns.isValid() && !m_aParameterRow.isValid() && !m_aParameterRow->empty()) )
2008-10-01 12:28:29 +00:00
m_pConnection->throwGenericSQLException(STR_INVALID_PARA_COUNT,*this);
2001-04-06 13:03:08 +00:00
m_pResultSet->OpenImpl();
m_pResultSet->setMetaData(getMetaData());
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)
{
::connectivity::checkDisposed(OStatement_BASE::rBHelper.bDisposed);
if ( m_aAssignValues.isValid() && (parameterIndex < 1 || parameterIndex >= static_cast<sal_Int32>(m_aParameterIndexes.size())) )
2001-07-23 06:55:59 +00:00
throwInvalidIndexException(*this);
else if ( static_cast<sal_Int32>((*m_aParameterRow).size()) <= parameterIndex )
{
sal_Int32 i = m_aParameterRow->size();
(*m_aParameterRow).resize(parameterIndex+1);
for ( ;i <= parameterIndex+1; ++i )
{
if ( !(*m_aParameterRow)[i].isValid() )
(*m_aParameterRow)[i] = new ORowSetValueDecorator;
}
}
2001-07-23 06:55:59 +00:00
}
// -----------------------------------------------------------------------------
void OPreparedStatement::setParameter(sal_Int32 parameterIndex, const ORowSetValue& x)
{
::osl::MutexGuard aGuard( m_aMutex );
checkAndResizeParameters(parameterIndex);
if(m_aAssignValues.isValid())
*(*m_aAssignValues)[m_aParameterIndexes[parameterIndex]] = x;
else
*((*m_aParameterRow)[parameterIndex]) = x;
2001-07-23 06:55:59 +00:00
}
// -----------------------------------------------------------------------------
UINT32 OPreparedStatement::AddParameter(OSQLParseNode * pParameter, const Reference<XPropertySet>& _xCol)
{
OSL_UNUSED( pParameter );
OSL_ENSURE(SQL_ISRULE(pParameter,parameter),"OResultSet::AddParameter: Argument ist kein Parameter");
OSL_ENSURE(pParameter->count() > 0,"OResultSet: Fehler im Parse Tree");
#if OSL_DEBUG_LEVEL > 0
OSQLParseNode * pMark = pParameter->getChild(0);
OSL_UNUSED( pMark );
#endif
::rtl::OUString sParameterName;
// Parameter-Column aufsetzen:
sal_Int32 eType = DataType::VARCHAR;
UINT32 nPrecision = 255;
sal_Int32 nScale = 0;
sal_Int32 nNullable = ColumnValue::NULLABLE;
if (_xCol.is())
{
// Typ, Precision, Scale ... der angegebenen Column verwenden,
// denn dieser Column wird der Wert zugewiesen bzw. mit dieser
// Column wird der Wert verglichen.
_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;
}
Reference<XPropertySet> xParaColumn = new connectivity::parse::OParseColumn(sParameterName
,::rtl::OUString()
,::rtl::OUString()
,nNullable
,nPrecision
,nScale
,eType
,sal_False
,sal_False
,m_aSQLIterator.isCaseSensitive());
m_xParamColumns->push_back(xParaColumn);
return m_xParamColumns->size();
}
// -----------------------------------------------------------------------------
void OPreparedStatement::describeColumn(OSQLParseNode* _pParameter,OSQLParseNode* _pNode,const OSQLTable& _xTable)
{
Reference<XPropertySet> xProp;
if(SQL_ISRULE(_pNode,column_ref))
{
::rtl::OUString sColumnName,sTableRange;
m_aSQLIterator.getColumnRange(_pNode,sColumnName,sTableRange);
if ( sColumnName.getLength() )
{
Reference<XNameAccess> xNameAccess = _xTable->getColumns();
if(xNameAccess->hasByName(sColumnName))
xNameAccess->getByName(sColumnName) >>= xProp;
AddParameter(_pParameter,xProp);
}
}
// else
// AddParameter(_pParameter,xProp);
}
// -------------------------------------------------------------------------
void OPreparedStatement::describeParameter()
{
::std::vector< OSQLParseNode*> aParseNodes;
scanParameter(m_pParseTree,aParseNodes);
if ( !aParseNodes.empty() )
{
// m_xParamColumns = new OSQLColumns();
const OSQLTables& xTabs = m_aSQLIterator.getTables();
if( !xTabs.empty() )
{
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)
{
OStatement_Base::initializeResultSet(_pResult);
2001-10-01 10:24:29 +00:00
m_pResultSet->setParameterColumns(m_xParamColumns);
m_pResultSet->setParameterRow(m_aParameterRow);
// Parameter substituieren (AssignValues und Kriterien):
if (!m_xParamColumns->empty())
{
// Zunaechst AssignValues
USHORT nParaCount=0; // gibt die aktuelle Anzahl der bisher gesetzen Parameter an
// Nach zu substituierenden Parametern suchen:
size_t nCount = m_aAssignValues.isValid() ? m_aAssignValues->size() : 1; // 1 ist wichtig fuer die Kriterien
for (size_t j = 1; j < nCount; j++)
{
UINT32 nParameter = (*m_aAssignValues).getParameterIndex(j);
if (nParameter == SQL_NO_PARAMETER)
continue; // dieser AssignValue ist kein Parameter
++nParaCount; // ab hier ist der Parameter gueltig
// Parameter ersetzen. Wenn Parameter nicht verfuegbar,
// Value auf NULL setzen.
// (*m_aAssignValues)[j] = (*m_aParameterRow)[(UINT16)nParameter];
}
if (m_aParameterRow.isValid() && (m_xParamColumns->size()+1) != m_aParameterRow->size() )
{
sal_Int32 i = m_aParameterRow->size();
sal_Int32 nParamColumns = m_xParamColumns->size()+1;
m_aParameterRow->resize(nParamColumns);
for ( ;i < nParamColumns; ++i )
{
if ( !(*m_aParameterRow)[i].isValid() )
(*m_aParameterRow)[i] = new ORowSetValueDecorator;
}
//m_aParameterRow->resize(m_xParamColumns->size()+1);
}
if (m_aParameterRow.isValid() && nParaCount < m_aParameterRow->size() )
{
m_pSQLAnalyzer->bindParameterRow(m_aParameterRow);
}
}
}
// -----------------------------------------------------------------------------
void OPreparedStatement::parseParamterElem(const String& _sColumnName,OSQLParseNode* pRow_Value_Constructor_Elem)
{
Reference<XPropertySet> xCol;
m_xColNames->getByName(_sColumnName) >>= xCol;
sal_Int32 nParameter = -1;
if(m_xParamColumns.isValid())
{
OSQLColumns::const_iterator aIter = find(m_xParamColumns->begin(),m_xParamColumns->end(),_sColumnName,::comphelper::UStringMixEqual(m_pTable->isCaseSensitive()));
if(aIter != m_xParamColumns->end())
nParameter = m_xParamColumns->size() - (m_xParamColumns->end() - aIter) + 1;// +1 because the rows start at 1
}
if(nParameter == -1)
nParameter = AddParameter(pRow_Value_Constructor_Elem,xCol);
// Nr. des Parameters in der Variablen merken:
SetAssignValue(_sColumnName, String(), TRUE, nParameter);
}
// -----------------------------------------------------------------------------
2000-09-18 15:18:56 +00:00