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

613 lines
22 KiB
C++
Raw Normal View History

2000-09-18 15:18:56 +00:00
/*************************************************************************
*
* $RCSfile: FPreparedStatement.cxx,v $
*
* $Revision: 1.18 $
2000-09-18 15:18:56 +00:00
*
* last change: $Author: oj $ $Date: 2001-05-23 09:13:11 $
2000-09-18 15:18:56 +00:00
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library 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 for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (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.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
2000-12-06 10:51:16 +00:00
#include <stdio.h>
2000-09-18 15:18:56 +00:00
#ifndef _OSL_DIAGNOSE_H_
#include <osl/diagnose.h>
#endif
#ifndef _CONNECTIVITY_FILE_OPREPAREDSTATEMENT_HXX_
#include "file/FPreparedStatement.hxx"
#endif
#ifndef _COM_SUN_STAR_SDBC_DATATYPE_HPP_
#include <com/sun/star/sdbc/DataType.hpp>
#endif
#ifndef _CONNECTIVITY_FILE_ORESULTSETMETADATA_HXX_
#include "file/FResultSetMetaData.hxx"
#endif
#ifndef _CPPUHELPER_TYPEPROVIDER_HXX_
#include <cppuhelper/typeprovider.hxx>
#endif
2000-10-09 11:34:19 +00:00
#ifndef _COMPHELPER_SEQUENCE_HXX_
#include <comphelper/sequence.hxx>
2000-09-18 15:18:56 +00:00
#endif
2000-09-29 14:30:09 +00:00
#ifndef _COM_SUN_STAR_LANG_DISPOSEDEXCEPTION_HPP_
#include <com/sun/star/lang/DisposedException.hpp>
2000-09-18 15:18:56 +00:00
#endif
2000-12-06 10:51:16 +00:00
#ifndef _DBHELPER_DBCONVERSION_HXX_
#include "connectivity/dbconversion.hxx"
#endif
2001-05-14 10:42:44 +00:00
#ifndef _DBHELPER_DBEXCEPTION_HXX_
#include "connectivity/dbexception.hxx"
#endif
2000-12-06 10:51:16 +00:00
2000-09-18 15:18:56 +00:00
using namespace connectivity;
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");
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)
2000-09-29 14:30:09 +00:00
,m_pTable(NULL)
2000-09-18 15:18:56 +00:00
{
}
// -------------------------------------------------------------------------
2000-09-29 14:30:09 +00:00
void OPreparedStatement::disposing()
{
OStatement_BASE2::disposing();
::osl::MutexGuard aGuard(m_aMutex);
2000-11-03 13:21:22 +00:00
m_xMetaData = NULL;
if(m_aRow.isValid())
2001-04-04 13:25:53 +00:00
{
2000-11-03 13:21:22 +00:00
m_aRow->clear();
2001-04-04 13:25:53 +00:00
m_aRow = NULL;
}
2000-11-03 13:21:22 +00:00
2000-09-29 14:30:09 +00:00
if(m_pTable)
{
m_pTable->release();
m_pTable = NULL;
}
}
// -------------------------------------------------------------------------
2000-09-18 15:18:56 +00:00
void OPreparedStatement::construct(const ::rtl::OUString& sql) throw(SQLException, RuntimeException)
{
2000-10-19 10:56:36 +00:00
::rtl::OUString aErr;
2000-09-18 15:18:56 +00:00
m_pParseTree = m_aParser.parseTree(aErr,sql);
if(m_pParseTree)
{
m_aSQLIterator.setParseTree(m_pParseTree);
m_aSQLIterator.traverseAll();
const OSQLTables& xTabs = m_aSQLIterator.getTables();
if(xTabs.begin() == xTabs.end())
2001-02-14 06:19:14 +00:00
throw SQLException(::rtl::OUString::createFromAscii("Driver does not support this function!"),*this,::rtl::OUString::createFromAscii("IM001"),0,Any());
2000-09-29 14:30:09 +00:00
// at this moment we support only one table per select statement
Reference< ::com::sun::star::lang::XUnoTunnel> xTunnel(xTabs.begin()->second,UNO_QUERY);
if(xTunnel.is())
{
2000-11-03 13:21:22 +00:00
if(m_pTable)
m_pTable->release();
2000-09-29 14:30:09 +00:00
m_pTable = (OFileTable*)xTunnel->getSomething(OFileTable::getUnoTunnelImplementationId());
if(m_pTable)
m_pTable->acquire();
}
2000-09-18 15:18:56 +00:00
m_aRow = new OValueVector();
2001-03-01 09:58:37 +00:00
m_aRow->push_back(sal_Int32(0));
2000-09-18 15:18:56 +00:00
}
else
2000-09-29 14:30:09 +00:00
throw SQLException(aErr,*this,::rtl::OUString(),0,Any());
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);
2000-09-18 15:18:56 +00:00
if(!aRet.hasValue())
aRet = ::cppu::queryInterface( rType,
static_cast< XPreparedStatement*>(this),
static_cast< XParameters*>(this),
static_cast< XResultSetMetaDataSupplier*>(this));
return aRet;
}
// -------------------------------------------------------------------------
::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);
2000-09-18 15:18:56 +00:00
2001-04-06 13:03:08 +00:00
Reference< XResultSet > rs = initResultSet();
2000-09-18 15:18:56 +00:00
return m_aSQLIterator.getStatementType() == SQL_STATEMENT_SELECT || m_aSQLIterator.getStatementType() == SQL_STATEMENT_SELECT_COUNT;
}
// -------------------------------------------------------------------------
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);
2000-09-29 14:30:09 +00:00
2001-04-06 13:03:08 +00:00
Reference< XResultSet > rs = initResultSet();
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)
{
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-03-01 09:58:37 +00:00
if( parameterIndex < 1)
2001-05-14 10:42:44 +00:00
throwInvalidIndexException(*this);
2001-03-01 09:58:37 +00:00
if(parameterIndex >= (sal_Int32)m_aRow->size())
2000-09-18 15:18:56 +00:00
m_aRow->push_back(x);
else
(*m_aRow)[parameterIndex] = x;
}
// -------------------------------------------------------------------------
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);
2000-09-29 14:30:09 +00:00
2001-04-06 13:03:08 +00:00
Reference< XResultSet > rs = initResultSet();
2000-09-18 15:18:56 +00:00
return rs;
}
// -------------------------------------------------------------------------
void SAL_CALL OPreparedStatement::setBoolean( sal_Int32 parameterIndex, sal_Bool x ) 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-03-01 09:58:37 +00:00
if( parameterIndex < 1)
2001-05-14 10:42:44 +00:00
throwInvalidIndexException(*this);
2000-09-18 15:18:56 +00:00
2001-03-01 09:58:37 +00:00
if(parameterIndex >= (sal_Int32)m_aRow->size())
2000-09-18 15:18:56 +00:00
m_aRow->push_back(x);
else
(*m_aRow)[parameterIndex] = x;
}
// -------------------------------------------------------------------------
void SAL_CALL OPreparedStatement::setByte( sal_Int32 parameterIndex, sal_Int8 x ) 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-03-01 09:58:37 +00:00
if( parameterIndex < 1)
2001-05-14 10:42:44 +00:00
throwInvalidIndexException(*this);
2000-09-18 15:18:56 +00:00
2001-03-01 09:58:37 +00:00
if(parameterIndex >= (sal_Int32)m_aRow->size())
2000-09-18 15:18:56 +00:00
m_aRow->push_back((sal_Int32)x);
else
(*m_aRow)[parameterIndex] = (sal_Int32)x;
}
// -------------------------------------------------------------------------
void SAL_CALL OPreparedStatement::setDate( sal_Int32 parameterIndex, const Date& aData ) 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-03-01 09:58:37 +00:00
if( parameterIndex < 1)
2001-05-14 10:42:44 +00:00
throwInvalidIndexException(*this);
2000-09-18 15:18:56 +00:00
2001-03-01 09:58:37 +00:00
if(parameterIndex >= (sal_Int32)m_aRow->size())
2000-12-06 10:51:16 +00:00
m_aRow->push_back(DBTypeConversion::toDouble(aData));
2000-09-18 15:18:56 +00:00
else
2000-12-06 10:51:16 +00:00
(*m_aRow)[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)
{
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-03-01 09:58:37 +00:00
if( parameterIndex < 1)
2001-05-14 10:42:44 +00:00
throwInvalidIndexException(*this);
2000-09-18 15:18:56 +00:00
2001-03-01 09:58:37 +00:00
if(parameterIndex >= (sal_Int32)m_aRow->size())
2000-12-06 10:51:16 +00:00
m_aRow->push_back(DBTypeConversion::toDouble(aVal));
2000-09-18 15:18:56 +00:00
else
2000-12-06 10:51:16 +00:00
(*m_aRow)[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)
{
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-03-01 09:58:37 +00:00
if( parameterIndex < 1)
2001-05-14 10:42:44 +00:00
throwInvalidIndexException(*this);
2000-09-18 15:18:56 +00:00
2001-03-01 09:58:37 +00:00
if(parameterIndex >= (sal_Int32)m_aRow->size())
2000-12-06 10:51:16 +00:00
m_aRow->push_back(DBTypeConversion::toDouble(aVal));
2000-09-18 15:18:56 +00:00
else
2000-12-06 10:51:16 +00:00
(*m_aRow)[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)
{
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-03-01 09:58:37 +00:00
if( parameterIndex < 1)
2001-05-14 10:42:44 +00:00
throwInvalidIndexException(*this);
2000-09-18 15:18:56 +00:00
2001-03-01 09:58:37 +00:00
if(parameterIndex >= (sal_Int32)m_aRow->size())
2000-09-18 15:18:56 +00:00
m_aRow->push_back(x);
else
(*m_aRow)[parameterIndex] = x;
}
// -------------------------------------------------------------------------
void SAL_CALL OPreparedStatement::setFloat( sal_Int32 parameterIndex, float x ) 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-03-01 09:58:37 +00:00
if( parameterIndex < 1)
2001-05-14 10:42:44 +00:00
throwInvalidIndexException(*this);
2000-09-18 15:18:56 +00:00
2001-03-01 09:58:37 +00:00
if(parameterIndex >= (sal_Int32)m_aRow->size())
2000-09-18 15:18:56 +00:00
m_aRow->push_back((double)x);
else
(*m_aRow)[parameterIndex] = (double)x;
}
// -------------------------------------------------------------------------
void SAL_CALL OPreparedStatement::setInt( sal_Int32 parameterIndex, sal_Int32 x ) 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-03-01 09:58:37 +00:00
if( parameterIndex < 1)
2001-05-14 10:42:44 +00:00
throwInvalidIndexException(*this);
2000-09-18 15:18:56 +00:00
2001-03-01 09:58:37 +00:00
if(parameterIndex >= (sal_Int32)m_aRow->size())
2000-09-18 15:18:56 +00:00
m_aRow->push_back(x);
else
(*m_aRow)[parameterIndex] = x;
}
// -------------------------------------------------------------------------
void SAL_CALL OPreparedStatement::setLong( sal_Int32 parameterIndex, sal_Int64 aVal ) 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-05-14 10:42:44 +00:00
throwInvalidIndexException(*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-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-18 15:18:56 +00:00
// Get the buffer needed for the length
2001-03-01 09:58:37 +00:00
if( parameterIndex < 1)
2001-05-14 10:42:44 +00:00
throwInvalidIndexException(*this);
2000-09-18 15:18:56 +00:00
2001-03-01 09:58:37 +00:00
if(parameterIndex >= (sal_Int32)m_aRow->size())
2000-10-17 08:05:49 +00:00
m_aRow->push_back(ORowSetValue());
2000-09-18 15:18:56 +00:00
else
(*m_aRow)[parameterIndex].setNull();
}
// -------------------------------------------------------------------------
void SAL_CALL OPreparedStatement::setClob( sal_Int32 parameterIndex, const Reference< XClob >& x ) 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-05-14 10:42:44 +00:00
throwInvalidIndexException(*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-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-05-14 10:42:44 +00:00
throwInvalidIndexException(*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-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-05-14 10:42:44 +00:00
throwInvalidIndexException(*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-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-05-14 10:42:44 +00:00
throwInvalidIndexException(*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)
{
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-03-01 09:58:37 +00:00
if( parameterIndex < 1)
2001-05-14 10:42:44 +00:00
throwInvalidIndexException(*this);
2000-09-18 15:18:56 +00:00
// For each known SQL Type, call the appropriate
// set routine
switch (sqlType)
{
2000-09-29 14:30:09 +00:00
case DataType::CHAR:
case DataType::VARCHAR:
case DataType::LONGVARCHAR:
2000-09-18 15:18:56 +00:00
(*m_aRow)[parameterIndex] = *(::rtl::OUString*) x.getValue();
break;
2000-09-29 14:30:09 +00:00
case DataType::BIT:
2000-09-18 15:18:56 +00:00
(*m_aRow)[parameterIndex] = *(sal_Bool*) x.getValue();
break;
2000-09-29 14:30:09 +00:00
case DataType::TINYINT:
case DataType::SMALLINT:
case DataType::INTEGER:
2000-09-18 15:18:56 +00:00
(*m_aRow)[parameterIndex] = *(sal_Int32*)x.getValue();
break;
2000-09-29 14:30:09 +00:00
case DataType::BIGINT:
case DataType::REAL:
case DataType::FLOAT:
case DataType::DOUBLE:
2000-09-18 15:18:56 +00:00
(*m_aRow)[parameterIndex] = *(double*)x.getValue();
break;
2000-09-29 14:30:09 +00:00
case DataType::BINARY:
2000-09-18 15:18:56 +00:00
break;
2000-09-29 14:30:09 +00:00
case DataType::VARBINARY:
case DataType::LONGVARBINARY:
2000-09-18 15:18:56 +00:00
break;
2000-09-29 14:30:09 +00:00
case DataType::DATE:
2000-12-06 10:51:16 +00:00
(*m_aRow)[parameterIndex] = DBTypeConversion::toDouble(*(Date*) x.getValue());
2000-09-18 15:18:56 +00:00
break;
2000-09-29 14:30:09 +00:00
case DataType::TIME:
2000-12-06 10:51:16 +00:00
(*m_aRow)[parameterIndex] = DBTypeConversion::toDouble(*(Time*)x.getValue());
2000-09-18 15:18:56 +00:00
break;
2000-09-29 14:30:09 +00:00
case DataType::TIMESTAMP:
2000-12-06 10:51:16 +00:00
(*m_aRow)[parameterIndex] = DBTypeConversion::toDouble(*(DateTime*)x.getValue());
2000-09-18 15:18:56 +00:00
break;
default:
{
::rtl::OUString aVal = ::rtl::OUString::createFromAscii("Unknown SQL Type for PreparedStatement.setObject (SQL Type=");
aVal += ::rtl::OUString::valueOf(sqlType);
2000-09-29 14:30:09 +00:00
throw SQLException( aVal,*this,::rtl::OUString(),0,Any());
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-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-03-01 09:58:37 +00:00
if( parameterIndex < 1)
2001-05-14 10:42:44 +00:00
throwInvalidIndexException(*this);
2000-09-18 15:18:56 +00:00
2001-03-01 09:58:37 +00:00
if(parameterIndex >= (sal_Int32)m_aRow->size())
2000-10-17 08:05:49 +00:00
m_aRow->push_back(ORowSetValue());
2000-09-18 15:18:56 +00:00
else
(*m_aRow)[parameterIndex].setNull();
}
// -------------------------------------------------------------------------
void SAL_CALL OPreparedStatement::setObject( sal_Int32 parameterIndex, const Any& x ) 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-05-14 10:42:44 +00:00
throwInvalidIndexException(*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)
{
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-03-01 09:58:37 +00:00
if( parameterIndex < 1)
2001-05-14 10:42:44 +00:00
throwInvalidIndexException(*this);
2000-09-18 15:18:56 +00:00
setInt(parameterIndex,x);
}
// -------------------------------------------------------------------------
void SAL_CALL OPreparedStatement::setBytes( sal_Int32 parameterIndex, const Sequence< sal_Int8 >& x ) 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-05-14 10:42:44 +00:00
throwInvalidIndexException(*this);
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)
{
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-05-14 10:42:44 +00:00
throwInvalidIndexException(*this);
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)
{
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-05-14 10:42:44 +00:00
throwInvalidIndexException(*this);
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);
2000-09-18 15:18:56 +00:00
m_aRow->clear();
}
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()
{
::comphelper::disposeComponent(m_xResultSet.get());
m_pResultSet = createResultSet();
Reference<XResultSet> xRs(m_pResultSet);
m_xResultSet = xRs;
if(m_aSQLIterator.getStatementType() == SQL_STATEMENT_SELECT || m_aSQLIterator.getStatementType() == SQL_STATEMENT_UPDATE)
m_pResultSet->describeParameter();
m_pResultSet->setParameterRow(m_aRow);
m_pResultSet->OpenImpl();
return xRs;
}
// -----------------------------------------------------------------------------
2001-04-30 09:16:19 +00:00
// -----------------------------------------------------------------------------
void SAL_CALL OPreparedStatement::acquire() throw(::com::sun::star::uno::RuntimeException)
{
OStatement_BASE2::acquire();
}
// -----------------------------------------------------------------------------
void SAL_CALL OPreparedStatement::release() throw(::com::sun::star::uno::RuntimeException)
{
OStatement_BASE2::release();
}
// -----------------------------------------------------------------------------
2000-09-18 15:18:56 +00:00