2010-10-12 15:59:03 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-14 17:39:53 +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 .
|
|
|
|
*/
|
2006-09-17 05:29:28 +00:00
|
|
|
|
2000-09-18 23:16:46 +00:00
|
|
|
#include "BookmarkSet.hxx"
|
2004-06-01 09:08:02 +00:00
|
|
|
#include "core_resource.hxx"
|
|
|
|
#include "core_resource.hrc"
|
2000-09-18 23:16:46 +00:00
|
|
|
#include <com/sun/star/sdbc/XResultSetUpdate.hpp>
|
2006-07-10 14:00:21 +00:00
|
|
|
#include <connectivity/dbexception.hxx>
|
|
|
|
|
2004-03-15 14:45:30 +00:00
|
|
|
#include <limits>
|
2000-09-18 23:16:46 +00:00
|
|
|
|
|
|
|
using namespace dbaccess;
|
2006-07-10 14:00:21 +00:00
|
|
|
using namespace ::connectivity;
|
|
|
|
using namespace ::dbtools;
|
2000-09-18 23:16:46 +00:00
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
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::lang;
|
|
|
|
using namespace ::osl;
|
|
|
|
|
2013-04-07 12:06:47 +02:00
|
|
|
void OBookmarkSet::construct(const Reference< XResultSet>& _xDriverSet,const OUString& i_sRowSetFilter)
|
2001-10-30 13:22:10 +00:00
|
|
|
{
|
2013-06-29 17:38:04 +03:00
|
|
|
SAL_INFO("dbaccess", "OBookmarkSet::construct" );
|
2010-01-19 09:16:12 +00:00
|
|
|
OCacheSet::construct(_xDriverSet,i_sRowSetFilter);
|
2004-08-02 13:58:15 +00:00
|
|
|
m_xRowLocate.set(_xDriverSet,UNO_QUERY);
|
2001-10-30 13:22:10 +00:00
|
|
|
}
|
2010-10-12 22:40:56 +02:00
|
|
|
|
2013-12-12 20:13:40 +01:00
|
|
|
void OBookmarkSet::reset(const Reference< XResultSet>& _xDriverSet)
|
|
|
|
{
|
|
|
|
construct(_xDriverSet, m_sRowSetFilter);
|
|
|
|
}
|
|
|
|
|
2006-06-20 01:32:54 +00:00
|
|
|
Any SAL_CALL OBookmarkSet::getBookmark() throw(SQLException, RuntimeException)
|
2001-10-30 13:22:10 +00:00
|
|
|
{
|
2013-06-29 17:38:04 +03:00
|
|
|
SAL_INFO("dbaccess", "OBookmarkSet::getBookmark" );
|
2001-10-30 13:22:10 +00:00
|
|
|
return m_xRowLocate->getBookmark();
|
|
|
|
}
|
2010-10-12 22:40:56 +02:00
|
|
|
|
2001-10-30 13:22:10 +00:00
|
|
|
sal_Bool SAL_CALL OBookmarkSet::moveToBookmark( const Any& bookmark ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-29 17:38:04 +03:00
|
|
|
SAL_INFO("dbaccess", "OBookmarkSet::moveToBookmark" );
|
2001-10-30 13:22:10 +00:00
|
|
|
return m_xRowLocate->moveToBookmark(bookmark);
|
|
|
|
}
|
2010-10-12 22:40:56 +02:00
|
|
|
|
2001-10-30 13:22:10 +00:00
|
|
|
sal_Bool SAL_CALL OBookmarkSet::moveRelativeToBookmark( const Any& bookmark, sal_Int32 rows ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-29 17:38:04 +03:00
|
|
|
SAL_INFO("dbaccess", "OBookmarkSet::moveRelativeToBookmark" );
|
2001-10-30 13:22:10 +00:00
|
|
|
return m_xRowLocate->moveRelativeToBookmark(bookmark,rows);
|
|
|
|
}
|
2010-10-12 22:40:56 +02:00
|
|
|
|
2006-06-20 01:32:54 +00:00
|
|
|
sal_Int32 SAL_CALL OBookmarkSet::compareBookmarks( const Any& _first, const Any& _second ) throw(SQLException, RuntimeException)
|
2001-10-30 13:22:10 +00:00
|
|
|
{
|
2013-06-29 17:38:04 +03:00
|
|
|
SAL_INFO("dbaccess", "OBookmarkSet::compareBookmarks" );
|
2006-06-20 01:32:54 +00:00
|
|
|
return m_xRowLocate->compareBookmarks(_first,_second);
|
2001-10-30 13:22:10 +00:00
|
|
|
}
|
2010-10-12 22:40:56 +02:00
|
|
|
|
2001-10-30 13:22:10 +00:00
|
|
|
sal_Bool SAL_CALL OBookmarkSet::hasOrderedBookmarks( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-29 17:38:04 +03:00
|
|
|
SAL_INFO("dbaccess", "OBookmarkSet::hasOrderedBookmarks" );
|
2001-10-30 13:22:10 +00:00
|
|
|
return m_xRowLocate->hasOrderedBookmarks();
|
|
|
|
}
|
2010-10-12 22:40:56 +02:00
|
|
|
|
2001-10-30 13:22:10 +00:00
|
|
|
sal_Int32 SAL_CALL OBookmarkSet::hashBookmark( const Any& bookmark ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-29 17:38:04 +03:00
|
|
|
SAL_INFO("dbaccess", "OBookmarkSet::hashBookmark" );
|
2001-10-30 13:22:10 +00:00
|
|
|
return m_xRowLocate->hashBookmark(bookmark);
|
|
|
|
}
|
2010-10-12 22:40:56 +02:00
|
|
|
|
2001-10-30 13:22:10 +00:00
|
|
|
// ::com::sun::star::sdbcx::XDeleteRows
|
2006-06-20 01:32:54 +00:00
|
|
|
Sequence< sal_Int32 > SAL_CALL OBookmarkSet::deleteRows( const Sequence< Any >& rows ,const connectivity::OSQLTable& /*_xTable*/) throw(SQLException, RuntimeException)
|
2001-10-30 13:22:10 +00:00
|
|
|
{
|
2013-06-29 17:38:04 +03:00
|
|
|
SAL_INFO("dbaccess", "OBookmarkSet::deleteRows" );
|
2001-10-30 13:22:10 +00:00
|
|
|
Reference< ::com::sun::star::sdbcx::XDeleteRows> xDeleteRow(m_xRowLocate,UNO_QUERY);
|
|
|
|
if(xDeleteRow.is())
|
|
|
|
{
|
|
|
|
return xDeleteRow->deleteRows(rows);
|
|
|
|
}
|
|
|
|
return Sequence< sal_Int32 >();
|
|
|
|
}
|
2010-10-12 22:40:56 +02:00
|
|
|
|
2006-06-20 01:32:54 +00:00
|
|
|
void SAL_CALL OBookmarkSet::insertRow( const ORowSetRow& _rInsertRow,const connectivity::OSQLTable& /*_xTable*/ ) throw(SQLException, RuntimeException)
|
2000-09-18 23:16:46 +00:00
|
|
|
{
|
2013-06-29 17:38:04 +03:00
|
|
|
SAL_INFO("dbaccess", "OBookmarkSet::insertRow" );
|
2000-09-18 23:16:46 +00:00
|
|
|
Reference<XRowUpdate> xUpdRow(m_xRowLocate,UNO_QUERY);
|
|
|
|
if(!xUpdRow.is())
|
2006-07-10 14:00:21 +00:00
|
|
|
::dbtools::throwSQLException( DBACORE_RESSTRING( RID_STR_NO_XROWUPDATE ), SQL_GENERAL_ERROR, *this );
|
2000-09-18 23:16:46 +00:00
|
|
|
|
|
|
|
Reference<XResultSetUpdate> xUpd(m_xRowLocate,UNO_QUERY);
|
|
|
|
if(xUpd.is())
|
2000-09-29 14:23:36 +00:00
|
|
|
{
|
|
|
|
xUpd->moveToInsertRow();
|
|
|
|
sal_Int32 i = 1;
|
2009-07-03 12:24:35 +00:00
|
|
|
connectivity::ORowVector< ORowSetValue > ::Vector::iterator aEnd = _rInsertRow->get().end();
|
|
|
|
for(connectivity::ORowVector< ORowSetValue > ::Vector::iterator aIter = _rInsertRow->get().begin()+1;aIter != aEnd;++aIter,++i)
|
2004-03-02 11:40:26 +00:00
|
|
|
{
|
|
|
|
aIter->setSigned(m_aSignedFlags[i-1]);
|
2000-09-29 14:23:36 +00:00
|
|
|
updateColumn(i,xUpdRow,*aIter);
|
2004-03-02 11:40:26 +00:00
|
|
|
}
|
2000-09-18 23:16:46 +00:00
|
|
|
xUpd->insertRow();
|
2008-12-30 13:32:01 +00:00
|
|
|
(*_rInsertRow->get().begin()) = m_xRowLocate->getBookmark();
|
2000-09-29 14:23:36 +00:00
|
|
|
}
|
2000-09-18 23:16:46 +00:00
|
|
|
else
|
2006-07-10 14:00:21 +00:00
|
|
|
::dbtools::throwSQLException( DBACORE_RESSTRING( RID_STR_NO_XRESULTSETUPDATE ), SQL_GENERAL_ERROR, *this );
|
2000-09-18 23:16:46 +00:00
|
|
|
}
|
2010-10-12 22:40:56 +02:00
|
|
|
|
2013-12-20 11:25:37 +01:00
|
|
|
void SAL_CALL OBookmarkSet::updateRow(const ORowSetRow& _rInsertRow ,const ORowSetRow& _rOriginalRow,const connectivity::OSQLTable& /*_xTable*/ ) throw(SQLException, RuntimeException)
|
2000-09-18 23:16:46 +00:00
|
|
|
{
|
2013-06-29 17:38:04 +03:00
|
|
|
SAL_INFO("dbaccess", "OBookmarkSet::updateRow" );
|
2000-09-18 23:16:46 +00:00
|
|
|
Reference<XRowUpdate> xUpdRow(m_xRowLocate,UNO_QUERY);
|
|
|
|
if(!xUpdRow.is())
|
2006-07-10 14:00:21 +00:00
|
|
|
::dbtools::throwSQLException( DBACORE_RESSTRING( RID_STR_NO_XROWUPDATE ), SQL_GENERAL_ERROR, *this );
|
2000-09-18 23:16:46 +00:00
|
|
|
|
|
|
|
sal_Int32 i = 1;
|
2013-12-20 11:25:37 +01:00
|
|
|
connectivity::ORowVector< ORowSetValue > ::Vector::const_iterator aOrgIter = _rOriginalRow->get().begin()+1;
|
2009-07-03 12:24:35 +00:00
|
|
|
connectivity::ORowVector< ORowSetValue > ::Vector::iterator aEnd = _rInsertRow->get().end();
|
|
|
|
for(connectivity::ORowVector< ORowSetValue > ::Vector::iterator aIter = _rInsertRow->get().begin()+1;aIter != aEnd;++aIter,++i,++aOrgIter)
|
2000-09-29 14:23:36 +00:00
|
|
|
{
|
2004-03-02 11:40:26 +00:00
|
|
|
aIter->setSigned(aOrgIter->isSigned());
|
2000-09-18 23:16:46 +00:00
|
|
|
updateColumn(i,xUpdRow,*aIter);
|
2000-09-29 14:23:36 +00:00
|
|
|
}
|
2000-09-18 23:16:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
Reference<XResultSetUpdate> xUpd(m_xRowLocate,UNO_QUERY);
|
|
|
|
if(xUpd.is())
|
|
|
|
xUpd->updateRow();
|
|
|
|
else
|
2006-07-10 14:00:21 +00:00
|
|
|
::dbtools::throwSQLException( DBACORE_RESSTRING( RID_STR_NO_XRESULTSETUPDATE ), SQL_GENERAL_ERROR, *this );
|
2000-09-18 23:16:46 +00:00
|
|
|
}
|
2010-10-12 22:40:56 +02:00
|
|
|
|
2006-06-20 01:32:54 +00:00
|
|
|
void SAL_CALL OBookmarkSet::deleteRow(const ORowSetRow& /*_rDeleteRow*/ ,const connectivity::OSQLTable& /*_xTable*/ ) throw(SQLException, RuntimeException)
|
2000-09-18 23:16:46 +00:00
|
|
|
{
|
2013-06-29 17:38:04 +03:00
|
|
|
SAL_INFO("dbaccess", "OBookmarkSet::deleteRow" );
|
2000-09-29 14:23:36 +00:00
|
|
|
Reference<XResultSetUpdate> xUpd(m_xRowLocate,UNO_QUERY);
|
|
|
|
|
|
|
|
xUpd->deleteRow();
|
2000-09-18 23:16:46 +00:00
|
|
|
}
|
2010-10-12 22:40:56 +02:00
|
|
|
|
2000-09-18 23:16:46 +00:00
|
|
|
void SAL_CALL OBookmarkSet::cancelRowUpdates( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-29 17:38:04 +03:00
|
|
|
SAL_INFO("dbaccess", "OBookmarkSet::cancelRowUpdates" );
|
2000-09-18 23:16:46 +00:00
|
|
|
}
|
2010-10-12 22:40:56 +02:00
|
|
|
|
2000-09-18 23:16:46 +00:00
|
|
|
void SAL_CALL OBookmarkSet::moveToInsertRow( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-29 17:38:04 +03:00
|
|
|
SAL_INFO("dbaccess", "OBookmarkSet::moveToInsertRow" );
|
2000-09-29 14:23:36 +00:00
|
|
|
Reference<XResultSetUpdate> xUpd(m_xRowLocate,UNO_QUERY);
|
|
|
|
if(xUpd.is())
|
|
|
|
xUpd->moveToInsertRow();
|
2000-09-18 23:16:46 +00:00
|
|
|
}
|
2010-10-12 22:40:56 +02:00
|
|
|
|
2000-09-18 23:16:46 +00:00
|
|
|
void SAL_CALL OBookmarkSet::moveToCurrentRow( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-29 17:38:04 +03:00
|
|
|
SAL_INFO("dbaccess", "OBookmarkSet::moveToCurrentRow" );
|
2000-09-18 23:16:46 +00:00
|
|
|
}
|
2010-10-12 22:40:56 +02:00
|
|
|
|
2000-11-14 12:28:20 +00:00
|
|
|
void OBookmarkSet::fillValueRow(ORowSetRow& _rRow,sal_Int32 _nPosition)
|
2000-09-18 23:16:46 +00:00
|
|
|
{
|
2013-06-29 17:38:04 +03:00
|
|
|
SAL_INFO("dbaccess", "OBookmarkSet::fillValueRow" );
|
2000-11-14 12:28:20 +00:00
|
|
|
OCacheSet::fillValueRow(_rRow,_nPosition);
|
2000-09-18 23:16:46 +00:00
|
|
|
}
|
2010-10-12 22:40:56 +02:00
|
|
|
|
2000-09-18 23:16:46 +00:00
|
|
|
void OBookmarkSet::updateColumn(sal_Int32 nPos,Reference< XRowUpdate > _xParameter,const ORowSetValue& _rValue)
|
|
|
|
{
|
2013-06-29 17:38:04 +03:00
|
|
|
SAL_INFO("dbaccess", "OBookmarkSet::updateColumn" );
|
2000-09-29 14:23:36 +00:00
|
|
|
if(_rValue.isBound() && _rValue.isModified())
|
2000-09-18 23:16:46 +00:00
|
|
|
{
|
2000-09-29 14:23:36 +00:00
|
|
|
if(_rValue.isNull())
|
|
|
|
_xParameter->updateNull(nPos);
|
|
|
|
else
|
2000-09-18 23:16:46 +00:00
|
|
|
{
|
|
|
|
|
2000-09-29 14:23:36 +00:00
|
|
|
switch(_rValue.getTypeKind())
|
|
|
|
{
|
2001-05-03 06:15:56 +00:00
|
|
|
case DataType::DECIMAL:
|
|
|
|
case DataType::NUMERIC:
|
2008-01-30 07:27:43 +00:00
|
|
|
_xParameter->updateNumericObject(nPos,_rValue.makeAny(),m_xSetMetaData->getScale(nPos));
|
|
|
|
break;
|
|
|
|
case DataType::CHAR:
|
|
|
|
case DataType::VARCHAR:
|
2000-09-29 14:23:36 +00:00
|
|
|
_xParameter->updateString(nPos,_rValue);
|
|
|
|
break;
|
2001-09-20 11:59:25 +00:00
|
|
|
case DataType::BIGINT:
|
2004-03-02 11:40:26 +00:00
|
|
|
if ( _rValue.isSigned() )
|
|
|
|
_xParameter->updateLong(nPos,_rValue);
|
|
|
|
else
|
|
|
|
_xParameter->updateString(nPos,_rValue);
|
2001-09-20 11:59:25 +00:00
|
|
|
break;
|
2000-09-29 14:23:36 +00:00
|
|
|
case DataType::BIT:
|
2005-02-17 10:01:11 +00:00
|
|
|
case DataType::BOOLEAN:
|
2000-09-29 14:23:36 +00:00
|
|
|
_xParameter->updateBoolean(nPos,_rValue);
|
|
|
|
break;
|
|
|
|
case DataType::TINYINT:
|
2004-03-02 11:40:26 +00:00
|
|
|
if ( _rValue.isSigned() )
|
|
|
|
_xParameter->updateByte(nPos,_rValue);
|
|
|
|
else
|
|
|
|
_xParameter->updateShort(nPos,_rValue);
|
2000-09-29 14:23:36 +00:00
|
|
|
break;
|
|
|
|
case DataType::SMALLINT:
|
2004-03-02 11:40:26 +00:00
|
|
|
if ( _rValue.isSigned() )
|
|
|
|
_xParameter->updateShort(nPos,_rValue);
|
|
|
|
else
|
|
|
|
_xParameter->updateInt(nPos,_rValue);
|
2000-09-29 14:23:36 +00:00
|
|
|
break;
|
|
|
|
case DataType::INTEGER:
|
2004-03-02 11:40:26 +00:00
|
|
|
if ( _rValue.isSigned() )
|
|
|
|
_xParameter->updateInt(nPos,_rValue);
|
|
|
|
else
|
|
|
|
_xParameter->updateLong(nPos,_rValue);
|
2000-09-29 14:23:36 +00:00
|
|
|
break;
|
|
|
|
case DataType::FLOAT:
|
2001-07-24 12:25:26 +00:00
|
|
|
_xParameter->updateFloat(nPos,_rValue);
|
|
|
|
break;
|
|
|
|
case DataType::DOUBLE:
|
2000-09-29 14:23:36 +00:00
|
|
|
case DataType::REAL:
|
|
|
|
_xParameter->updateDouble(nPos,_rValue);
|
|
|
|
break;
|
|
|
|
case DataType::DATE:
|
|
|
|
_xParameter->updateDate(nPos,_rValue);
|
|
|
|
break;
|
|
|
|
case DataType::TIME:
|
|
|
|
_xParameter->updateTime(nPos,_rValue);
|
|
|
|
break;
|
|
|
|
case DataType::TIMESTAMP:
|
|
|
|
_xParameter->updateTimestamp(nPos,_rValue);
|
|
|
|
break;
|
|
|
|
case DataType::BINARY:
|
|
|
|
case DataType::VARBINARY:
|
|
|
|
case DataType::LONGVARBINARY:
|
|
|
|
_xParameter->updateBytes(nPos,_rValue);
|
|
|
|
break;
|
2009-11-11 14:16:42 +01:00
|
|
|
case DataType::BLOB:
|
|
|
|
case DataType::CLOB:
|
|
|
|
_xParameter->updateObject(nPos,_rValue.getAny());
|
|
|
|
break;
|
2000-09-29 14:23:36 +00:00
|
|
|
}
|
2000-09-18 23:16:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2010-10-12 15:59:03 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|