2013-05-10 18:21:30 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*************************************************************************
|
|
|
|
*
|
|
|
|
* The Contents of this file are made available subject to the terms of
|
|
|
|
* the BSD license.
|
|
|
|
*
|
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of Sun Microsystems, Inc. nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
|
|
|
|
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
|
|
|
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*************************************************************************/
|
|
|
|
|
2013-07-22 14:50:47 +02:00
|
|
|
#include "FConnection.hxx"
|
2013-05-10 18:21:30 +00:00
|
|
|
#include "FPreparedStatement.hxx"
|
|
|
|
#include "FResultSetMetaData.hxx"
|
2013-05-23 13:31:58 +00:00
|
|
|
#include "FResultSet.hxx"
|
2013-07-22 14:50:47 +02:00
|
|
|
#include "Util.hxx"
|
|
|
|
|
|
|
|
#include <comphelper/sequence.hxx>
|
2013-05-10 18:21:30 +00:00
|
|
|
#include <cppuhelper/typeprovider.hxx>
|
2013-07-22 14:50:47 +02:00
|
|
|
#include <osl/diagnose.h>
|
|
|
|
#include <propertyids.hxx>
|
|
|
|
|
|
|
|
#include <com/sun/star/sdbc/DataType.hpp>
|
2013-05-10 18:21:30 +00:00
|
|
|
#include <com/sun/star/lang/DisposedException.hpp>
|
|
|
|
|
|
|
|
using namespace connectivity::firebird;
|
2013-07-22 14:50:47 +02:00
|
|
|
|
|
|
|
using namespace ::comphelper;
|
|
|
|
using namespace ::osl;
|
|
|
|
|
|
|
|
using namespace com::sun::star;
|
2013-05-10 18:21:30 +00:00
|
|
|
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::container;
|
|
|
|
using namespace com::sun::star::io;
|
|
|
|
using namespace com::sun::star::util;
|
|
|
|
|
2013-05-23 13:31:58 +00:00
|
|
|
typedef struct vary {
|
|
|
|
short vary_length;
|
|
|
|
char vary_string[1];
|
|
|
|
} VARY;
|
|
|
|
|
2013-05-10 18:21:30 +00:00
|
|
|
IMPLEMENT_SERVICE_INFO(OPreparedStatement,"com.sun.star.sdbcx.firebird.PreparedStatement","com.sun.star.sdbc.PreparedStatement");
|
|
|
|
|
2013-05-27 13:13:51 +00:00
|
|
|
|
2013-07-17 17:00:18 +02:00
|
|
|
OPreparedStatement::OPreparedStatement( OConnection* _pConnection,
|
|
|
|
const TTypeInfoVector& _TypeInfo,
|
|
|
|
const OUString& sql)
|
2013-07-23 19:04:33 +02:00
|
|
|
:OStatementCommonBase(_pConnection)
|
2013-05-10 18:21:30 +00:00
|
|
|
,m_aTypeInfo(_TypeInfo)
|
2013-07-16 10:56:17 +02:00
|
|
|
,m_sSqlStatement(sql)
|
2013-07-22 14:50:47 +02:00
|
|
|
,m_statementHandle(0)
|
|
|
|
,m_pOutSqlda(0)
|
|
|
|
,m_pInSqlda(0)
|
2013-05-10 18:21:30 +00:00
|
|
|
{
|
2013-07-22 14:50:47 +02:00
|
|
|
SAL_INFO("connectivity.firebird", "OPreparedStatement(). "
|
2013-06-04 13:51:40 +03:00
|
|
|
"sql: " << sql);
|
2013-07-22 14:50:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void OPreparedStatement::ensurePrepared()
|
|
|
|
throw (SQLException)
|
|
|
|
{
|
|
|
|
MutexGuard aGuard(m_pConnection->getMutex());
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-06-04 13:51:40 +03:00
|
|
|
|
2013-07-22 14:50:47 +02:00
|
|
|
if (m_statementHandle)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ISC_STATUS aErr = 0;
|
|
|
|
|
|
|
|
if (!m_pInSqlda)
|
|
|
|
{
|
|
|
|
m_pInSqlda = (XSQLDA*) malloc(XSQLDA_LENGTH(10));
|
|
|
|
m_pInSqlda->version = SQLDA_VERSION1;
|
|
|
|
m_pInSqlda->sqln = 10;
|
|
|
|
} // TODO: free this on closing
|
|
|
|
|
|
|
|
aErr = prepareAndDescribeStatement(m_sSqlStatement,
|
|
|
|
m_statementHandle,
|
|
|
|
m_pOutSqlda,
|
|
|
|
m_pInSqlda);
|
|
|
|
if (aErr)
|
|
|
|
{
|
|
|
|
SAL_WARN("connectivity.firebird", "prepareAndDescribeStatement failed");
|
|
|
|
}
|
|
|
|
else if (m_statementHandle)
|
|
|
|
{
|
|
|
|
isc_dsql_describe_bind(m_statusVector,
|
|
|
|
&m_statementHandle,
|
|
|
|
1,
|
|
|
|
m_pInSqlda);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aErr)
|
|
|
|
{
|
|
|
|
SAL_WARN("connectivity.firebird", "isc_dsql_describe_bind failed");
|
|
|
|
}
|
|
|
|
else if (m_pInSqlda->sqld > m_pInSqlda->sqln) // Not large enough
|
|
|
|
{
|
|
|
|
short nItems = m_pInSqlda->sqld;
|
|
|
|
free(m_pInSqlda);
|
|
|
|
m_pInSqlda = (XSQLDA*) malloc(XSQLDA_LENGTH(nItems));
|
|
|
|
m_pInSqlda->version = SQLDA_VERSION1;
|
|
|
|
m_pInSqlda->sqln = nItems;
|
|
|
|
isc_dsql_describe_bind(m_statusVector,
|
|
|
|
&m_statementHandle,
|
|
|
|
1,
|
|
|
|
m_pInSqlda);
|
|
|
|
}
|
|
|
|
// char aItems[] = {
|
|
|
|
// isc_info_sql_num_variables
|
|
|
|
// };
|
|
|
|
// char aResultBuffer[8];
|
|
|
|
// isc_dsql_sql_info(m_statusVector,
|
|
|
|
// &m_statementHandle,
|
|
|
|
// sizeof(aItems),
|
|
|
|
// aItems,
|
|
|
|
// sizeof(aResultBuffer),
|
|
|
|
// aResultBuffer);
|
|
|
|
// if (aResultBuffer[0] == isc_info_sql_num_variables)
|
|
|
|
// {
|
|
|
|
// short aVarLength = (short) isc_vax_integer(aResultBuffer+1, 2);
|
|
|
|
// m_nNumParams = isc_vax_integer(aResultBuffer+3, aVarLength);
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
mallocSQLVAR(m_pInSqlda);
|
2013-07-25 16:30:32 +02:00
|
|
|
evaluateStatusVector(m_statusVector, m_sSqlStatement, *this);
|
2013-05-10 18:21:30 +00:00
|
|
|
}
|
2013-05-27 13:13:51 +00:00
|
|
|
|
2013-05-10 18:21:30 +00:00
|
|
|
OPreparedStatement::~OPreparedStatement()
|
|
|
|
{
|
|
|
|
}
|
2013-07-22 14:50:47 +02:00
|
|
|
|
2013-05-10 18:21:30 +00:00
|
|
|
void SAL_CALL OPreparedStatement::acquire() throw()
|
|
|
|
{
|
2013-07-23 19:04:33 +02:00
|
|
|
OStatementCommonBase::acquire();
|
2013-05-10 18:21:30 +00:00
|
|
|
}
|
2013-07-22 14:50:47 +02:00
|
|
|
|
2013-05-10 18:21:30 +00:00
|
|
|
void SAL_CALL OPreparedStatement::release() throw()
|
|
|
|
{
|
2013-07-23 19:04:33 +02:00
|
|
|
OStatementCommonBase::release();
|
2013-05-10 18:21:30 +00:00
|
|
|
}
|
2013-07-22 14:50:47 +02:00
|
|
|
|
|
|
|
Any SAL_CALL OPreparedStatement::queryInterface(const Type& rType)
|
|
|
|
throw(RuntimeException)
|
2013-05-10 18:21:30 +00:00
|
|
|
{
|
2013-07-23 19:04:33 +02:00
|
|
|
Any aRet = OStatementCommonBase::queryInterface(rType);
|
2013-05-10 18:21:30 +00:00
|
|
|
if(!aRet.hasValue())
|
2013-07-23 19:04:33 +02:00
|
|
|
aRet = OPreparedStatement_Base::queryInterface(rType);
|
2013-05-10 18:21:30 +00:00
|
|
|
return aRet;
|
|
|
|
}
|
2013-07-22 14:50:47 +02:00
|
|
|
|
|
|
|
uno::Sequence< Type > SAL_CALL OPreparedStatement::getTypes()
|
|
|
|
throw(RuntimeException)
|
2013-05-10 18:21:30 +00:00
|
|
|
{
|
2013-07-23 19:04:33 +02:00
|
|
|
return concatSequences(OPreparedStatement_Base::getTypes(),
|
|
|
|
OStatementCommonBase::getTypes());
|
2013-05-10 18:21:30 +00:00
|
|
|
}
|
|
|
|
|
2013-07-22 14:50:47 +02:00
|
|
|
Reference< XResultSetMetaData > SAL_CALL OPreparedStatement::getMetaData()
|
|
|
|
throw(SQLException, RuntimeException)
|
2013-05-10 18:21:30 +00:00
|
|
|
{
|
2013-07-19 09:04:36 +02:00
|
|
|
::osl::MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-07-25 17:12:05 +02:00
|
|
|
ensurePrepared();
|
|
|
|
|
|
|
|
if(!m_xMetaData.is())
|
|
|
|
m_xMetaData = new OResultSetMetaData(m_pConnection, m_pOutSqlda);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
|
|
|
return m_xMetaData;
|
|
|
|
}
|
|
|
|
|
2013-07-22 14:50:47 +02:00
|
|
|
void SAL_CALL OPreparedStatement::close() throw(SQLException, RuntimeException)
|
2013-05-10 18:21:30 +00:00
|
|
|
{
|
2013-07-18 11:23:01 +02:00
|
|
|
SAL_INFO("connectivity.firebird", "close()");
|
2013-05-27 21:06:48 +00:00
|
|
|
|
2013-07-22 14:50:47 +02:00
|
|
|
MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
2013-07-22 14:50:47 +02:00
|
|
|
if (m_statementHandle)
|
|
|
|
{
|
|
|
|
// TODO: implement
|
2013-05-10 18:21:30 +00:00
|
|
|
}
|
|
|
|
|
2013-07-23 19:04:33 +02:00
|
|
|
OStatementCommonBase::close();
|
2013-05-10 18:21:30 +00:00
|
|
|
}
|
|
|
|
|
2013-07-22 14:50:47 +02:00
|
|
|
sal_Bool SAL_CALL OPreparedStatement::execute()
|
|
|
|
throw(SQLException, RuntimeException)
|
2013-05-10 18:21:30 +00:00
|
|
|
{
|
2013-07-22 14:50:47 +02:00
|
|
|
MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
2013-07-22 14:50:47 +02:00
|
|
|
// TODO: implement
|
2013-05-10 18:21:30 +00:00
|
|
|
return sal_False;
|
|
|
|
}
|
|
|
|
|
2013-07-22 14:50:47 +02:00
|
|
|
sal_Int32 SAL_CALL OPreparedStatement::executeUpdate()
|
|
|
|
throw(SQLException, RuntimeException)
|
2013-05-10 18:21:30 +00:00
|
|
|
{
|
2013-07-22 14:50:47 +02:00
|
|
|
MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
2013-07-22 14:50:47 +02:00
|
|
|
// TODO: implement
|
2013-05-10 18:21:30 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-07-22 14:50:47 +02:00
|
|
|
void SAL_CALL OPreparedStatement::setString(sal_Int32 nParameterIndex,
|
|
|
|
const OUString& x)
|
|
|
|
throw(SQLException, RuntimeException)
|
2013-05-10 18:21:30 +00:00
|
|
|
{
|
2013-07-18 11:23:01 +02:00
|
|
|
SAL_INFO("connectivity.firebird", "setString(). "
|
2013-07-22 14:50:47 +02:00
|
|
|
"parameterIndex: " << nParameterIndex << " , "
|
2013-06-04 13:51:40 +03:00
|
|
|
"x: " << x);
|
|
|
|
|
2013-07-22 14:50:47 +02:00
|
|
|
MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-07-22 14:50:47 +02:00
|
|
|
ensurePrepared();
|
2013-06-03 23:25:45 +00:00
|
|
|
|
2013-07-22 14:50:47 +02:00
|
|
|
checkParameterIndex(nParameterIndex);
|
2013-06-03 23:25:45 +00:00
|
|
|
|
|
|
|
OString str = OUStringToOString(x , RTL_TEXTENCODING_UTF8 );
|
|
|
|
|
2013-07-25 17:12:05 +02:00
|
|
|
XSQLVAR* pVar = m_pInSqlda->sqlvar + (nParameterIndex - 1);
|
2013-06-03 23:25:45 +00:00
|
|
|
|
2013-07-22 14:50:47 +02:00
|
|
|
int dtype = (pVar->sqltype & ~1); // drop flag bit for now
|
|
|
|
switch (dtype) {
|
2013-06-03 23:25:45 +00:00
|
|
|
case SQL_VARYING:
|
2013-07-22 14:50:47 +02:00
|
|
|
pVar->sqltype = SQL_TEXT;
|
2013-06-03 23:25:45 +00:00
|
|
|
case SQL_TEXT:
|
2013-07-22 14:50:47 +02:00
|
|
|
if (str.getLength() > pVar->sqllen)
|
|
|
|
{ // Cut off overflow
|
|
|
|
memcpy(pVar->sqldata, str.getStr(), pVar->sqllen);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
memcpy(pVar->sqldata, str.getStr(), str.getLength());
|
|
|
|
// Fill remainder with spaces
|
|
|
|
// TODO: would 0 be better here for filling?
|
|
|
|
memset(pVar->sqldata + str.getLength(), ' ', pVar->sqllen - str.getLength());
|
|
|
|
}
|
2013-06-03 23:25:45 +00:00
|
|
|
break;
|
|
|
|
default:
|
2013-07-22 14:50:47 +02:00
|
|
|
// TODO: sane error message
|
|
|
|
throw SQLException();
|
2013-06-03 23:25:45 +00:00
|
|
|
}
|
2013-05-10 18:21:30 +00:00
|
|
|
}
|
|
|
|
|
2013-07-22 14:50:47 +02:00
|
|
|
Reference< XConnection > SAL_CALL OPreparedStatement::getConnection()
|
|
|
|
throw(SQLException, RuntimeException)
|
2013-05-10 18:21:30 +00:00
|
|
|
{
|
2013-07-22 14:50:47 +02:00
|
|
|
MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
2013-07-22 14:50:47 +02:00
|
|
|
return Reference< XConnection >(m_pConnection);
|
2013-05-10 18:21:30 +00:00
|
|
|
}
|
|
|
|
|
2013-07-22 14:50:47 +02:00
|
|
|
Reference< XResultSet > SAL_CALL OPreparedStatement::executeQuery()
|
|
|
|
throw(SQLException, RuntimeException)
|
2013-05-10 18:21:30 +00:00
|
|
|
{
|
2013-07-18 11:23:01 +02:00
|
|
|
SAL_INFO("connectivity.firebird", "executeQuery(). "
|
2013-06-04 13:51:40 +03:00
|
|
|
"Got called with sql: " << m_sSqlStatement);
|
2013-05-22 08:56:23 +00:00
|
|
|
|
2013-07-22 14:50:47 +02:00
|
|
|
MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-07-22 14:50:47 +02:00
|
|
|
ensurePrepared();
|
2013-05-10 18:21:30 +00:00
|
|
|
|
2013-07-22 14:50:47 +02:00
|
|
|
ISC_STATUS aErr;
|
2013-05-23 13:31:58 +00:00
|
|
|
|
2013-07-22 14:50:47 +02:00
|
|
|
aErr = isc_dsql_execute(m_statusVector,
|
|
|
|
&m_pConnection->getTransaction(),
|
|
|
|
&m_statementHandle,
|
|
|
|
1,
|
|
|
|
m_pInSqlda);
|
|
|
|
if (aErr)
|
|
|
|
{
|
|
|
|
SAL_WARN("connectivity.firebird", "isc_dsql_execute failed" );
|
2013-07-25 16:30:32 +02:00
|
|
|
evaluateStatusVector(m_statusVector, "isc_dsql_execute", *this);
|
2013-07-22 14:50:47 +02:00
|
|
|
}
|
2013-05-22 08:56:23 +00:00
|
|
|
|
2013-07-22 14:50:47 +02:00
|
|
|
uno::Reference< OResultSet > pResult(new OResultSet(m_pConnection,
|
2013-07-23 17:24:12 +02:00
|
|
|
uno::Reference< XInterface >(*this),
|
2013-07-22 14:50:47 +02:00
|
|
|
m_statementHandle,
|
|
|
|
m_pOutSqlda));
|
|
|
|
m_xResultSet = pResult.get();
|
2013-05-27 13:13:51 +00:00
|
|
|
|
2013-07-22 14:50:47 +02:00
|
|
|
return m_xResultSet;
|
2013-05-10 18:21:30 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setBoolean( sal_Int32 parameterIndex, sal_Bool x ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-07-16 10:56:17 +02:00
|
|
|
(void) parameterIndex;
|
|
|
|
(void) x;
|
2013-07-19 09:04:36 +02:00
|
|
|
::osl::MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OPreparedStatement::setByte( sal_Int32 parameterIndex, sal_Int8 x ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-07-16 10:56:17 +02:00
|
|
|
(void) parameterIndex;
|
|
|
|
(void) x;
|
2013-07-19 09:04:36 +02:00
|
|
|
::osl::MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setDate( sal_Int32 parameterIndex, const Date& aData ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-07-16 10:56:17 +02:00
|
|
|
(void) parameterIndex;
|
|
|
|
(void) aData;
|
2013-07-19 09:04:36 +02:00
|
|
|
::osl::MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setTime( sal_Int32 parameterIndex, const Time& aVal ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-07-16 10:56:17 +02:00
|
|
|
(void) parameterIndex;
|
|
|
|
(void) aVal;
|
2013-07-19 09:04:36 +02:00
|
|
|
::osl::MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setTimestamp( sal_Int32 parameterIndex, const DateTime& aVal ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-07-16 10:56:17 +02:00
|
|
|
(void) parameterIndex;
|
|
|
|
(void) aVal;
|
2013-07-19 09:04:36 +02:00
|
|
|
::osl::MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setDouble( sal_Int32 parameterIndex, double x ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-07-16 10:56:17 +02:00
|
|
|
(void) parameterIndex;
|
|
|
|
(void) x;
|
2013-07-19 09:04:36 +02:00
|
|
|
::osl::MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setFloat( sal_Int32 parameterIndex, float x ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-07-16 10:56:17 +02:00
|
|
|
(void) parameterIndex;
|
|
|
|
(void) x;
|
2013-07-19 09:04:36 +02:00
|
|
|
::osl::MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setInt( sal_Int32 parameterIndex, sal_Int32 x ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-07-16 10:56:17 +02:00
|
|
|
(void) parameterIndex;
|
|
|
|
(void) x;
|
2013-07-19 09:04:36 +02:00
|
|
|
::osl::MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setLong( sal_Int32 parameterIndex, sal_Int64 aVal ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-07-16 10:56:17 +02:00
|
|
|
(void) parameterIndex;
|
|
|
|
(void) aVal;
|
2013-07-19 09:04:36 +02:00
|
|
|
::osl::MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setNull( sal_Int32 parameterIndex, sal_Int32 sqlType ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-07-16 10:56:17 +02:00
|
|
|
(void) parameterIndex;
|
|
|
|
(void) sqlType;
|
2013-07-19 09:04:36 +02:00
|
|
|
::osl::MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setClob( sal_Int32 parameterIndex, const Reference< XClob >& x ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-07-16 10:56:17 +02:00
|
|
|
(void) parameterIndex;
|
|
|
|
(void) x;
|
2013-07-19 09:04:36 +02:00
|
|
|
::osl::MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setBlob( sal_Int32 parameterIndex, const Reference< XBlob >& x ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-07-16 10:56:17 +02:00
|
|
|
(void) parameterIndex;
|
|
|
|
(void) x;
|
2013-07-19 09:04:36 +02:00
|
|
|
::osl::MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setArray( sal_Int32 parameterIndex, const Reference< XArray >& x ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-07-16 10:56:17 +02:00
|
|
|
(void) parameterIndex;
|
|
|
|
(void) x;
|
2013-07-19 09:04:36 +02:00
|
|
|
::osl::MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setRef( sal_Int32 parameterIndex, const Reference< XRef >& x ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-07-16 10:56:17 +02:00
|
|
|
(void) parameterIndex;
|
|
|
|
(void) x;
|
2013-07-19 09:04:36 +02:00
|
|
|
::osl::MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setObjectWithInfo( sal_Int32 parameterIndex, const Any& x, sal_Int32 sqlType, sal_Int32 scale ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-07-16 10:56:17 +02:00
|
|
|
(void) parameterIndex;
|
|
|
|
(void) x;
|
|
|
|
(void) sqlType;
|
|
|
|
(void) scale;
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-07-19 09:04:36 +02:00
|
|
|
::osl::MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-05-10 18:21:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setObjectNull( sal_Int32 parameterIndex, sal_Int32 sqlType, const ::rtl::OUString& typeName ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-07-16 10:56:17 +02:00
|
|
|
(void) parameterIndex;
|
|
|
|
(void) sqlType;
|
|
|
|
(void) typeName;
|
2013-07-19 09:04:36 +02:00
|
|
|
::osl::MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setObject( sal_Int32 parameterIndex, const Any& x ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-07-16 10:56:17 +02:00
|
|
|
(void) parameterIndex;
|
|
|
|
(void) x;
|
2013-07-19 09:04:36 +02:00
|
|
|
::osl::MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setShort( sal_Int32 parameterIndex, sal_Int16 x ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-07-16 10:56:17 +02:00
|
|
|
(void) parameterIndex;
|
|
|
|
(void) x;
|
2013-07-19 09:04:36 +02:00
|
|
|
::osl::MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::setBytes( sal_Int32 parameterIndex, const Sequence< sal_Int8 >& x ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-07-16 10:56:17 +02:00
|
|
|
(void) parameterIndex;
|
|
|
|
(void) x;
|
2013-07-19 09:04:36 +02:00
|
|
|
::osl::MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +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-07-16 10:56:17 +02:00
|
|
|
(void) parameterIndex;
|
|
|
|
(void) x;
|
|
|
|
(void) length;
|
2013-07-19 09:04:36 +02:00
|
|
|
::osl::MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +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-07-16 10:56:17 +02:00
|
|
|
(void) parameterIndex;
|
|
|
|
(void) x;
|
|
|
|
(void) length;
|
2013-07-19 09:04:36 +02:00
|
|
|
::osl::MutexGuard aGuard( m_pConnection->getMutex() );
|
2013-07-23 19:04:33 +02:00
|
|
|
checkDisposed(OStatementCommonBase_Base::rBHelper.bDisposed);
|
2013-05-10 18:21:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::clearParameters( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OPreparedStatement::clearBatch( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SAL_CALL OPreparedStatement::addBatch( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
Sequence< sal_Int32 > SAL_CALL OPreparedStatement::executeBatch( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
return Sequence< sal_Int32 > ();
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
void OPreparedStatement::setFastPropertyValue_NoBroadcast(sal_Int32 nHandle,const Any& rValue) throw (Exception)
|
|
|
|
{
|
|
|
|
switch(nHandle)
|
|
|
|
{
|
|
|
|
case PROPERTY_ID_RESULTSETCONCURRENCY:
|
|
|
|
break;
|
|
|
|
case PROPERTY_ID_RESULTSETTYPE:
|
|
|
|
break;
|
|
|
|
case PROPERTY_ID_FETCHDIRECTION:
|
|
|
|
break;
|
|
|
|
case PROPERTY_ID_USEBOOKMARKS:
|
|
|
|
break;
|
|
|
|
default:
|
2013-07-23 19:04:33 +02:00
|
|
|
OStatementCommonBase::setFastPropertyValue_NoBroadcast(nHandle,rValue);
|
2013-05-10 18:21:30 +00:00
|
|
|
}
|
|
|
|
}
|
2013-07-22 14:50:47 +02:00
|
|
|
|
|
|
|
void OPreparedStatement::checkParameterIndex(sal_Int32 nParameterIndex)
|
|
|
|
throw(SQLException)
|
2013-05-10 18:21:30 +00:00
|
|
|
{
|
2013-07-22 14:50:47 +02:00
|
|
|
ensurePrepared();
|
|
|
|
if ((nParameterIndex == 0) || (nParameterIndex > m_pOutSqlda->sqld))
|
2013-05-10 18:21:30 +00:00
|
|
|
throw SQLException();
|
2013-07-22 14:50:47 +02:00
|
|
|
// TODO: sane error message here.
|
2013-05-10 18:21:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|