1
0
Fork 0
libreoffice/connectivity/source/commontools/FDatabaseMetaDataResultSet.cxx
Daniel Baumann 8e63e14cf6
Adding upstream version 4:25.2.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 16:20:04 +02:00

810 lines
23 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* 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 .
*/
#include <ParameterSubstitution.hxx>
#include <FDatabaseMetaDataResultSet.hxx>
#include <FDatabaseMetaDataResultSetMetaData.hxx>
#include <com/sun/star/sdbc/ColumnSearch.hpp>
#include <com/sun/star/beans/PropertyAttribute.hpp>
#include <cppuhelper/typeprovider.hxx>
#include <comphelper/sequence.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <connectivity/dbexception.hxx>
#include <o3tl/safeint.hxx>
#include <o3tl/unreachable.hxx>
#include <TConnection.hxx>
using namespace connectivity;
using namespace dbtools;
using namespace cppu;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::sdbc;
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::lang;
ODatabaseMetaDataResultSet::ODatabaseMetaDataResultSet()
:
m_nColPos(0)
,m_bBOF(true)
,m_bEOF(true)
{
construct();
}
ODatabaseMetaDataResultSet::ODatabaseMetaDataResultSet( MetaDataResultSetType _eType )
:
m_nColPos(0)
,m_bBOF(true)
,m_bEOF(true)
{
construct();
setType(_eType);
}
ODatabaseMetaDataResultSet::~ODatabaseMetaDataResultSet()
{
}
void ODatabaseMetaDataResultSet::construct()
{
registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_FETCHSIZE), PROPERTY_ID_FETCHSIZE, 0,&m_nFetchSize, ::cppu::UnoType<sal_Int32>::get());
registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_RESULTSETTYPE), PROPERTY_ID_RESULTSETTYPE, PropertyAttribute::READONLY,&m_nResultSetType, ::cppu::UnoType<sal_Int32>::get());
registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_FETCHDIRECTION), PROPERTY_ID_FETCHDIRECTION, 0, &m_nFetchDirection, ::cppu::UnoType<sal_Int32>::get());
registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_RESULTSETCONCURRENCY), PROPERTY_ID_RESULTSETCONCURRENCY, PropertyAttribute::READONLY,&m_nResultSetConcurrency, ::cppu::UnoType<sal_Int32>::get());
}
void ODatabaseMetaDataResultSet::setType(MetaDataResultSetType _eType)
{
switch( _eType )
{
case eCatalogs: setCatalogsMap(); break;
case eSchemas: setSchemasMap(); break;
case eColumnPrivileges: setColumnPrivilegesMap(); break;
case eColumns: setColumnsMap(); break;
case eTables: setTablesMap(); break;
case eTableTypes: setTableTypes(); break;
case eProcedureColumns: setProcedureColumnsMap(); break;
case eProcedures: setProceduresMap(); break;
case eExportedKeys: setExportedKeysMap(); break;
case eImportedKeys: setImportedKeysMap(); break;
case ePrimaryKeys: setPrimaryKeysMap(); break;
case eIndexInfo: setIndexInfoMap(); break;
case eTablePrivileges: setTablePrivilegesMap(); break;
case eCrossReference: setCrossReferenceMap(); break;
case eTypeInfo: setTypeInfoMap(); break;
case eBestRowIdentifier: setBestRowIdentifierMap(); break;
case eVersionColumns: setVersionColumnsMap(); break;
case eUDTs: setUDTsMap(); break;
default:
OSL_FAIL("Wrong type!");
}
}
void ODatabaseMetaDataResultSet::disposing(std::unique_lock<std::mutex>& rGuard)
{
OPropertySetHelper::disposing(rGuard);
m_aStatement.clear();
m_xMetaData.clear();
m_aRowsIter = m_aRows.end();
m_aRows.clear();
m_aRowsIter = m_aRows.end();
}
void SAL_CALL ODatabaseMetaDataResultSet::acquire() noexcept
{
ODatabaseMetaDataResultSet_BASE::acquire();
}
void SAL_CALL ODatabaseMetaDataResultSet::release() noexcept
{
ODatabaseMetaDataResultSet_BASE::release();
}
Any SAL_CALL ODatabaseMetaDataResultSet::queryInterface( const Type & rType )
{
Any aRet = OPropertySetHelper::queryInterface(rType);
return aRet.hasValue() ? aRet : ODatabaseMetaDataResultSet_BASE::queryInterface(rType);
}
Sequence< Type > SAL_CALL ODatabaseMetaDataResultSet::getTypes( )
{
::cppu::OTypeCollection aTypes( cppu::UnoType<css::beans::XMultiPropertySet>::get(),
cppu::UnoType<css::beans::XFastPropertySet>::get(),
cppu::UnoType<css::beans::XPropertySet>::get());
return ::comphelper::concatSequences(aTypes.getTypes(),ODatabaseMetaDataResultSet_BASE::getTypes());
}
void ODatabaseMetaDataResultSet::setRows(ORows&& _rRows)
{
m_aRows = std::move(_rRows);
m_bBOF = true;
m_bEOF = m_aRows.empty();
}
sal_Int32 SAL_CALL ODatabaseMetaDataResultSet::findColumn( const OUString& columnName )
{
std::unique_lock aGuard( m_aMutex );
throwIfDisposed(aGuard);
Reference< XResultSetMetaData > xMeta = getMetaData(aGuard);
sal_Int32 nLen = xMeta->getColumnCount();
sal_Int32 i = 1;
for(;i<=nLen;++i)
{
if(xMeta->isCaseSensitive(i) ? columnName == xMeta->getColumnName(i) :
columnName.equalsIgnoreAsciiCase(xMeta->getColumnName(i))
)
return i;
}
::dbtools::throwInvalidColumnException( columnName, *this );
}
void ODatabaseMetaDataResultSet::checkIndex(std::unique_lock<std::mutex>& /*rGuard*/, sal_Int32 columnIndex )
{
if(columnIndex < 1 || o3tl::make_unsigned(columnIndex) >= (*m_aRowsIter).size())
::dbtools::throwInvalidIndexException(*this);
}
Reference< css::io::XInputStream > SAL_CALL ODatabaseMetaDataResultSet::getBinaryStream( sal_Int32 /*columnIndex*/ )
{
return nullptr;
}
Reference< css::io::XInputStream > SAL_CALL ODatabaseMetaDataResultSet::getCharacterStream( sal_Int32 /*columnIndex*/ )
{
return nullptr;
}
sal_Bool SAL_CALL ODatabaseMetaDataResultSet::getBoolean( sal_Int32 columnIndex )
{
return getValue(columnIndex).getBool();
}
sal_Int8 SAL_CALL ODatabaseMetaDataResultSet::getByte( sal_Int32 columnIndex )
{
return getValue(columnIndex).getInt8();
}
Sequence< sal_Int8 > SAL_CALL ODatabaseMetaDataResultSet::getBytes( sal_Int32 columnIndex )
{
return getValue(columnIndex).getSequence();
}
css::util::Date SAL_CALL ODatabaseMetaDataResultSet::getDate( sal_Int32 columnIndex )
{
return getValue(columnIndex).getDate();
}
double SAL_CALL ODatabaseMetaDataResultSet::getDouble( sal_Int32 columnIndex )
{
return getValue(columnIndex).getDouble();
}
float SAL_CALL ODatabaseMetaDataResultSet::getFloat( sal_Int32 columnIndex )
{
return getValue(columnIndex).getFloat();
}
sal_Int32 SAL_CALL ODatabaseMetaDataResultSet::getInt( sal_Int32 columnIndex )
{
return getValue(columnIndex).getInt32();
}
sal_Int32 SAL_CALL ODatabaseMetaDataResultSet::getRow( )
{
return 0;
}
sal_Int64 SAL_CALL ODatabaseMetaDataResultSet::getLong( sal_Int32 columnIndex )
{
return getValue(columnIndex).getLong();
}
Reference< XResultSetMetaData > SAL_CALL ODatabaseMetaDataResultSet::getMetaData( )
{
std::unique_lock aGuard( m_aMutex );
return getMetaData(aGuard);
}
Reference< XResultSetMetaData > ODatabaseMetaDataResultSet::getMetaData( std::unique_lock<std::mutex>& rGuard )
{
throwIfDisposed(rGuard);
if(!m_xMetaData.is())
m_xMetaData = new ODatabaseMetaDataResultSetMetaData();
return m_xMetaData;
}
Reference< XArray > SAL_CALL ODatabaseMetaDataResultSet::getArray( sal_Int32 /*columnIndex*/ )
{
return nullptr;
}
Reference< XClob > SAL_CALL ODatabaseMetaDataResultSet::getClob( sal_Int32 /*columnIndex*/ )
{
return nullptr;
}
Reference< XBlob > SAL_CALL ODatabaseMetaDataResultSet::getBlob( sal_Int32 /*columnIndex*/ )
{
return nullptr;
}
Reference< XRef > SAL_CALL ODatabaseMetaDataResultSet::getRef( sal_Int32 /*columnIndex*/ )
{
return nullptr;
}
Any SAL_CALL ODatabaseMetaDataResultSet::getObject( sal_Int32 columnIndex, const Reference< css::container::XNameAccess >& /*typeMap*/ )
{
return getValue(columnIndex).makeAny();
}
sal_Int16 SAL_CALL ODatabaseMetaDataResultSet::getShort( sal_Int32 columnIndex )
{
return getValue(columnIndex).getInt16();
}
OUString SAL_CALL ODatabaseMetaDataResultSet::getString( sal_Int32 columnIndex )
{
return getValue(columnIndex).getString();
}
css::util::Time SAL_CALL ODatabaseMetaDataResultSet::getTime( sal_Int32 columnIndex )
{
return getValue(columnIndex).getTime();
}
css::util::DateTime SAL_CALL ODatabaseMetaDataResultSet::getTimestamp( sal_Int32 columnIndex )
{
return getValue(columnIndex).getDateTime();
}
sal_Bool SAL_CALL ODatabaseMetaDataResultSet::isAfterLast()
{
return m_bEOF;
}
bool ODatabaseMetaDataResultSet::isAfterLast( std::unique_lock<std::mutex>& /*rGuard*/)
{
return m_bEOF;
}
sal_Bool SAL_CALL ODatabaseMetaDataResultSet::isFirst( )
{
::dbtools::throwFunctionSequenceException(*this);
}
sal_Bool SAL_CALL ODatabaseMetaDataResultSet::isLast( )
{
::dbtools::throwFunctionSequenceException(*this);
}
void SAL_CALL ODatabaseMetaDataResultSet::beforeFirst( )
{
::dbtools::throwFunctionSequenceException(*this);
}
void SAL_CALL ODatabaseMetaDataResultSet::afterLast( )
{
::dbtools::throwFunctionSequenceException(*this);
}
void SAL_CALL ODatabaseMetaDataResultSet::close( )
{
{
std::unique_lock aGuard( m_aMutex );
throwIfDisposed(aGuard);
}
dispose();
}
sal_Bool SAL_CALL ODatabaseMetaDataResultSet::first( )
{
::dbtools::throwFunctionSequenceException(*this);
}
sal_Bool SAL_CALL ODatabaseMetaDataResultSet::last( )
{
::dbtools::throwFunctionSequenceException(*this);
}
sal_Bool SAL_CALL ODatabaseMetaDataResultSet::absolute( sal_Int32 /*row*/ )
{
::dbtools::throwFunctionSequenceException(*this);
}
sal_Bool SAL_CALL ODatabaseMetaDataResultSet::relative( sal_Int32 /*row*/ )
{
::dbtools::throwFunctionSequenceException(*this);
}
sal_Bool SAL_CALL ODatabaseMetaDataResultSet::previous( )
{
::dbtools::throwFunctionSequenceException(*this);
}
Reference< XInterface > SAL_CALL ODatabaseMetaDataResultSet::getStatement( )
{
return m_aStatement.get();
}
sal_Bool SAL_CALL ODatabaseMetaDataResultSet::rowDeleted( )
{
::dbtools::throwFunctionSequenceException(*this);
}
sal_Bool SAL_CALL ODatabaseMetaDataResultSet::rowInserted( )
{
::dbtools::throwFunctionSequenceException(*this);
}
sal_Bool SAL_CALL ODatabaseMetaDataResultSet::rowUpdated( )
{
::dbtools::throwFunctionSequenceException(*this);
}
sal_Bool SAL_CALL ODatabaseMetaDataResultSet::isBeforeFirst()
{
return m_bBOF;
}
bool ODatabaseMetaDataResultSet::isBeforeFirst(std::unique_lock<std::mutex>& /*rGuard*/)
{
return m_bBOF;
}
sal_Bool SAL_CALL ODatabaseMetaDataResultSet::next( )
{
std::unique_lock aGuard( m_aMutex );
return next(aGuard);
}
bool ODatabaseMetaDataResultSet::next( std::unique_lock<std::mutex>& rGuard )
{
throwIfDisposed(rGuard);
if ( m_bBOF )
{
m_aRowsIter = m_aRows.begin();
m_bBOF = false;
}
else
{
if ( m_bEOF )
throwFunctionSequenceException( *this );
else
if ( m_aRowsIter != m_aRows.end() )
++m_aRowsIter;
}
bool bSuccess = m_aRowsIter != m_aRows.end();
if ( !bSuccess )
{
m_bEOF = true;
m_bBOF = m_aRows.empty();
}
return bSuccess;
}
sal_Bool SAL_CALL ODatabaseMetaDataResultSet::wasNull( )
{
std::unique_lock aGuard( m_aMutex );
throwIfDisposed(aGuard);
if(m_aRowsIter == m_aRows.end() || !(*m_aRowsIter)[m_nColPos].is())
return true;
return (*m_aRowsIter)[m_nColPos]->getValue().isNull();
}
void SAL_CALL ODatabaseMetaDataResultSet::refreshRow( )
{
}
void SAL_CALL ODatabaseMetaDataResultSet::cancel( )
{
}
void SAL_CALL ODatabaseMetaDataResultSet::clearWarnings( )
{
}
Any SAL_CALL ODatabaseMetaDataResultSet::getWarnings( )
{
return Any();
}
::cppu::IPropertyArrayHelper* ODatabaseMetaDataResultSet::createArrayHelper( ) const
{
Sequence< Property > aProps;
describeProperties(aProps);
return new ::cppu::OPropertyArrayHelper(aProps);
}
::cppu::IPropertyArrayHelper & ODatabaseMetaDataResultSet::getInfoHelper()
{
return *getArrayHelper();
}
void ODatabaseMetaDataResultSet::setProceduresMap()
{
m_xMetaData = new ODatabaseMetaDataResultSetMetaData();
m_xMetaData->setProceduresMap();
}
void ODatabaseMetaDataResultSet::setCatalogsMap()
{
m_xMetaData = new ODatabaseMetaDataResultSetMetaData();
m_xMetaData->setCatalogsMap();
}
void ODatabaseMetaDataResultSet::setSchemasMap()
{
m_xMetaData = new ODatabaseMetaDataResultSetMetaData();
m_xMetaData->setSchemasMap();
}
void ODatabaseMetaDataResultSet::setColumnPrivilegesMap()
{
m_xMetaData = new ODatabaseMetaDataResultSetMetaData();
m_xMetaData->setColumnPrivilegesMap();
}
void ODatabaseMetaDataResultSet::setColumnsMap()
{
m_xMetaData = new ODatabaseMetaDataResultSetMetaData();
m_xMetaData->setColumnsMap();
}
void ODatabaseMetaDataResultSet::setTablesMap()
{
m_xMetaData = new ODatabaseMetaDataResultSetMetaData();
m_xMetaData->setTablesMap();
}
void ODatabaseMetaDataResultSet::setProcedureColumnsMap()
{
m_xMetaData = new ODatabaseMetaDataResultSetMetaData();
m_xMetaData->setProcedureColumnsMap();
}
void ODatabaseMetaDataResultSet::setPrimaryKeysMap()
{
m_xMetaData = new ODatabaseMetaDataResultSetMetaData();
m_xMetaData->setPrimaryKeysMap();
}
void ODatabaseMetaDataResultSet::setIndexInfoMap()
{
m_xMetaData = new ODatabaseMetaDataResultSetMetaData();
m_xMetaData->setIndexInfoMap();
}
void ODatabaseMetaDataResultSet::setTablePrivilegesMap()
{
m_xMetaData = new ODatabaseMetaDataResultSetMetaData();
m_xMetaData->setTablePrivilegesMap();
}
void ODatabaseMetaDataResultSet::setCrossReferenceMap()
{
m_xMetaData = new ODatabaseMetaDataResultSetMetaData();
m_xMetaData->setCrossReferenceMap();
}
void ODatabaseMetaDataResultSet::setVersionColumnsMap()
{
m_xMetaData = new ODatabaseMetaDataResultSetMetaData();
m_xMetaData->setVersionColumnsMap();
}
void ODatabaseMetaDataResultSet::setBestRowIdentifierMap()
{
m_xMetaData = new ODatabaseMetaDataResultSetMetaData();
m_xMetaData->setBestRowIdentifierMap();
}
void ODatabaseMetaDataResultSet::setTypeInfoMap()
{
m_xMetaData = new ODatabaseMetaDataResultSetMetaData();
m_xMetaData->setTypeInfoMap();
}
void ODatabaseMetaDataResultSet::setUDTsMap()
{
m_xMetaData = new ODatabaseMetaDataResultSetMetaData();
m_xMetaData->setUDTsMap();
}
void ODatabaseMetaDataResultSet::setTableTypes()
{
m_xMetaData = new ODatabaseMetaDataResultSetMetaData();
m_xMetaData->setTableTypes();
}
void ODatabaseMetaDataResultSet::setExportedKeysMap()
{
m_xMetaData = new ODatabaseMetaDataResultSetMetaData();
m_xMetaData->setExportedKeysMap();
}
void ODatabaseMetaDataResultSet::setImportedKeysMap()
{
m_xMetaData = new ODatabaseMetaDataResultSetMetaData();
m_xMetaData->setImportedKeysMap();
}
Reference< css::beans::XPropertySetInfo > SAL_CALL ODatabaseMetaDataResultSet::getPropertySetInfo( )
{
return ::cppu::OPropertySetHelper::createPropertySetInfo(getInfoHelper());
}
ORowSetValueDecorator& ORowSetValueDecorator::operator=(const ORowSetValue& _aValue)
{
m_aValue = _aValue;
return *this;
}
const ORowSetValue& ODatabaseMetaDataResultSet::getValue(sal_Int32 columnIndex)
{
std::unique_lock aGuard( m_aMutex );
throwIfDisposed(aGuard);
if ( isBeforeFirst(aGuard) || isAfterLast(aGuard) )
::dbtools::throwFunctionSequenceException( *this );
checkIndex(aGuard, columnIndex);
m_nColPos = columnIndex;
if(m_aRowsIter != m_aRows.end() && (*m_aRowsIter)[columnIndex].is())
return *(*m_aRowsIter)[columnIndex];
return m_aEmptyValue;
}
/// return an empty ORowSetValueDecorator
ORowSetValueDecoratorRef const & ODatabaseMetaDataResultSet::getEmptyValue()
{
static ORowSetValueDecoratorRef aEmptyValueRef = new ORowSetValueDecorator();
return aEmptyValueRef;
}
/// return an ORowSetValueDecorator with 0 as value
ORowSetValueDecoratorRef const & ODatabaseMetaDataResultSet::get0Value()
{
static ORowSetValueDecoratorRef a0ValueRef = new ORowSetValueDecorator(sal_Int32(0));
return a0ValueRef;
}
/// return an ORowSetValueDecorator with 1 as value
ORowSetValueDecoratorRef const & ODatabaseMetaDataResultSet::get1Value()
{
static ORowSetValueDecoratorRef a1ValueRef = new ORowSetValueDecorator(sal_Int32(1));
return a1ValueRef;
}
/// return an ORowSetValueDecorator with ColumnSearch::BASIC as value
ORowSetValueDecoratorRef const & ODatabaseMetaDataResultSet::getBasicValue()
{
static ORowSetValueDecoratorRef aValueRef = new ORowSetValueDecorator(ColumnSearch::BASIC);
return aValueRef;
}
ORowSetValueDecoratorRef const & ODatabaseMetaDataResultSet::getSelectValue()
{
static ORowSetValueDecoratorRef aValueRef = new ORowSetValueDecorator(u"SELECT"_ustr);
return aValueRef;
}
ORowSetValueDecoratorRef const & ODatabaseMetaDataResultSet::getInsertValue()
{
static ORowSetValueDecoratorRef aValueRef = new ORowSetValueDecorator(u"INSERT"_ustr);
return aValueRef;
}
ORowSetValueDecoratorRef const & ODatabaseMetaDataResultSet::getDeleteValue()
{
static ORowSetValueDecoratorRef aValueRef = new ORowSetValueDecorator(u"DELETE"_ustr);
return aValueRef;
}
ORowSetValueDecoratorRef const & ODatabaseMetaDataResultSet::getUpdateValue()
{
static ORowSetValueDecoratorRef aValueRef = new ORowSetValueDecorator(u"UPDATE"_ustr);
return aValueRef;
}
ORowSetValueDecoratorRef const & ODatabaseMetaDataResultSet::getCreateValue()
{
static ORowSetValueDecoratorRef aValueRef = new ORowSetValueDecorator(u"CREATE"_ustr);
return aValueRef;
}
ORowSetValueDecoratorRef const & ODatabaseMetaDataResultSet::getReadValue()
{
static ORowSetValueDecoratorRef aValueRef = new ORowSetValueDecorator(u"READ"_ustr);
return aValueRef;
}
ORowSetValueDecoratorRef const & ODatabaseMetaDataResultSet::getAlterValue()
{
static ORowSetValueDecoratorRef aValueRef = new ORowSetValueDecorator(u"ALTER"_ustr);
return aValueRef;
}
ORowSetValueDecoratorRef const & ODatabaseMetaDataResultSet::getDropValue()
{
static ORowSetValueDecoratorRef aValueRef = new ORowSetValueDecorator(u"DROP"_ustr);
return aValueRef;
}
ORowSetValueDecoratorRef const & ODatabaseMetaDataResultSet::getQuoteValue()
{
static ORowSetValueDecoratorRef aValueRef = new ORowSetValueDecorator(u"'"_ustr);
return aValueRef;
}
void SAL_CALL ODatabaseMetaDataResultSet::initialize( const Sequence< Any >& _aArguments )
{
if ( _aArguments.getLength() != 2 )
return;
sal_Int32 nResultSetType = 0;
if ( !(_aArguments[0] >>= nResultSetType))
return;
setType(static_cast<MetaDataResultSetType>(nResultSetType));
Sequence< Sequence<Any> > aRows;
if ( !(_aArguments[1] >>= aRows) )
return;
ORows aRowsToSet;
for (auto& row : aRows)
{
ORow aRowToSet;
for (auto& field : row)
{
ORowSetValueDecoratorRef aValue;
switch (field.getValueTypeClass())
{
case TypeClass_BOOLEAN:
{
bool bValue = false;
field >>= bValue;
aValue = new ORowSetValueDecorator(ORowSetValue(bValue));
}
break;
case TypeClass_BYTE:
{
sal_Int8 nValue(0);
field >>= nValue;
aValue = new ORowSetValueDecorator(ORowSetValue(nValue));
}
break;
case TypeClass_SHORT:
case TypeClass_UNSIGNED_SHORT:
{
sal_Int16 nValue(0);
field >>= nValue;
aValue = new ORowSetValueDecorator(ORowSetValue(nValue));
}
break;
case TypeClass_LONG:
case TypeClass_UNSIGNED_LONG:
{
sal_Int32 nValue(0);
field >>= nValue;
aValue = new ORowSetValueDecorator(ORowSetValue(nValue));
}
break;
case TypeClass_HYPER:
case TypeClass_UNSIGNED_HYPER:
{
sal_Int64 nValue(0);
field >>= nValue;
aValue = new ORowSetValueDecorator(ORowSetValue(nValue));
}
break;
case TypeClass_FLOAT:
{
float nValue(0.0);
field >>= nValue;
aValue = new ORowSetValueDecorator(ORowSetValue(nValue));
}
break;
case TypeClass_DOUBLE:
{
double nValue(0.0);
field >>= nValue;
aValue = new ORowSetValueDecorator(ORowSetValue(nValue));
}
break;
case TypeClass_STRING:
{
OUString sValue;
field >>= sValue;
aValue = new ORowSetValueDecorator(ORowSetValue(sValue));
}
break;
default:
break;
}
aRowToSet.push_back(aValue);
}
aRowsToSet.push_back(aRowToSet);
} // for (; pRowsIter != pRowsEnd;++pRowsIter
setRows(std::move(aRowsToSet));
}
// XServiceInfo
OUString SAL_CALL ODatabaseMetaDataResultSet::getImplementationName( )
{
return u"org.openoffice.comp.helper.DatabaseMetaDataResultSet"_ustr;
}
sal_Bool SAL_CALL ODatabaseMetaDataResultSet::supportsService( const OUString& _rServiceName )
{
return cppu::supportsService(this, _rServiceName);
}
Sequence< OUString > SAL_CALL ODatabaseMetaDataResultSet::getSupportedServiceNames( )
{
return Sequence<OUString>{ u"com.sun.star.sdbc.ResultSet"_ustr };
}
extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface*
connectivity_dbtools_ODatabaseMetaDataResultSet_get_implementation(
css::uno::XComponentContext* , css::uno::Sequence<css::uno::Any> const&)
{
return cppu::acquire(new ODatabaseMetaDataResultSet());
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */