2000-09-18 15:18:56 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-08 04:09:08 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2005-09-08 04:09:08 +00:00
|
|
|
* $RCSfile: DateConversion.cxx,v $
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2005-10-24 07:20:24 +00:00
|
|
|
* $Revision: 1.14 $
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2005-10-24 07:20:24 +00:00
|
|
|
* last change: $Author: rt $ $Date: 2005-10-24 08:20:24 $
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2005-09-08 04:09:08 +00:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
|
|
|
*
|
2005-09-08 04:09:08 +00:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2005-09-08 04:09:08 +00:00
|
|
|
* 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.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2005-09-08 04:09:08 +00:00
|
|
|
* 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.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2005-09-08 04:09:08 +00:00
|
|
|
* 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
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2001-05-25 12:11:19 +00:00
|
|
|
|
|
|
|
#ifndef _DBHELPER_DBCONVERSION_HXX_
|
|
|
|
#include "connectivity/dbconversion.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef _CONNECTIVITY_DBTOOLS_HXX_
|
|
|
|
#include <connectivity/dbtools.hxx>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _COM_SUN_STAR_SCRIPT_XTYPECONVERTER_HPP_
|
|
|
|
#include <com/sun/star/script/XTypeConverter.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SDBC_DATATYPE_HPP_
|
|
|
|
#include <com/sun/star/sdbc/DataType.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_UTIL_NUMBERFORMAT_HPP_
|
|
|
|
#include <com/sun/star/util/NumberFormat.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_UTIL_XNUMBERFORMATTYPES_HPP_
|
|
|
|
#include <com/sun/star/util/XNumberFormatTypes.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SDB_XCOLUMNUPDATE_HPP_
|
|
|
|
#include <com/sun/star/sdb/XColumnUpdate.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SDB_XCOLUMN_HPP_
|
|
|
|
#include <com/sun/star/sdb/XColumn.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_BEANS_XPROPERTYSET_HPP_
|
|
|
|
#include <com/sun/star/beans/XPropertySet.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COMPHELPER_EXTRACT_HXX_
|
|
|
|
#include <comphelper/extract.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef CONNECTIVITY_CONNECTION_HXX
|
|
|
|
#include "TConnection.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef _COMPHELPER_NUMBERS_HXX_
|
|
|
|
#include <comphelper/numbers.hxx>
|
2000-09-18 15:18:56 +00:00
|
|
|
#endif
|
|
|
|
|
2001-05-25 12:11:19 +00:00
|
|
|
|
|
|
|
using namespace ::connectivity;
|
|
|
|
using namespace ::comphelper;
|
|
|
|
using namespace ::com::sun::star::script;
|
|
|
|
using namespace ::com::sun::star::sdb;
|
|
|
|
using namespace ::com::sun::star::sdbc;
|
|
|
|
using namespace ::dbtools;
|
|
|
|
using namespace ::com::sun::star::lang;
|
2004-03-15 11:45:47 +00:00
|
|
|
using namespace ::com::sun::star::beans;
|
2000-09-18 15:18:56 +00:00
|
|
|
using namespace ::com::sun::star::util;
|
|
|
|
using namespace ::com::sun::star::uno;
|
2001-05-25 12:11:19 +00:00
|
|
|
using namespace ::com::sun::star::util;
|
2004-03-17 10:54:46 +00:00
|
|
|
using namespace ::com::sun::star::beans;
|
2001-05-25 12:11:19 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
::rtl::OUString DBTypeConversion::toSQLString(sal_Int32 eType, const Any& _rVal, sal_Bool bQuote,
|
|
|
|
const Reference< XTypeConverter >& _rxTypeConverter)
|
|
|
|
{
|
|
|
|
::rtl::OUString aRet;
|
|
|
|
if (_rVal.hasValue())
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
switch (eType)
|
|
|
|
{
|
|
|
|
case DataType::INTEGER:
|
|
|
|
case DataType::BIT:
|
2005-02-17 09:14:22 +00:00
|
|
|
case DataType::BOOLEAN:
|
2001-05-25 12:11:19 +00:00
|
|
|
case DataType::TINYINT:
|
|
|
|
case DataType::SMALLINT:
|
|
|
|
if (_rVal.getValueType().getTypeClass() == ::com::sun::star::uno::TypeClass_BOOLEAN)
|
|
|
|
{
|
|
|
|
if (::cppu::any2bool(_rVal))
|
|
|
|
aRet = ::rtl::OUString::createFromAscii("1");
|
|
|
|
else
|
|
|
|
aRet = ::rtl::OUString::createFromAscii("0");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
_rxTypeConverter->convertToSimpleType(_rVal, TypeClass_STRING) >>= aRet;
|
|
|
|
break;
|
|
|
|
case DataType::CHAR:
|
|
|
|
case DataType::VARCHAR:
|
|
|
|
if (bQuote)
|
|
|
|
aRet += ::rtl::OUString::createFromAscii("'");
|
|
|
|
{
|
|
|
|
::rtl::OUString aTemp;
|
|
|
|
_rxTypeConverter->convertToSimpleType(_rVal, TypeClass_STRING) >>= aTemp;
|
2002-12-04 10:25:48 +00:00
|
|
|
sal_Int32 nIndex = (sal_Int32)-1;
|
|
|
|
::rtl::OUString sQuot(RTL_CONSTASCII_USTRINGPARAM("\'"));
|
|
|
|
::rtl::OUString sQuotToReplace(RTL_CONSTASCII_USTRINGPARAM("\'\'"));
|
|
|
|
do
|
|
|
|
{
|
|
|
|
nIndex += 2;
|
|
|
|
nIndex = aTemp.indexOf(sQuot,nIndex);
|
|
|
|
if(nIndex != -1)
|
|
|
|
aTemp = aTemp.replaceAt(nIndex,sQuot.getLength(),sQuotToReplace);
|
|
|
|
} while (nIndex != -1);
|
|
|
|
|
2001-05-25 12:11:19 +00:00
|
|
|
aRet += aTemp;
|
|
|
|
}
|
|
|
|
if (bQuote)
|
|
|
|
aRet += ::rtl::OUString::createFromAscii("'");
|
|
|
|
break;
|
|
|
|
case DataType::REAL:
|
|
|
|
case DataType::DOUBLE:
|
|
|
|
case DataType::DECIMAL:
|
|
|
|
case DataType::NUMERIC:
|
2001-09-20 11:51:56 +00:00
|
|
|
case DataType::BIGINT:
|
2001-05-25 12:11:19 +00:00
|
|
|
_rxTypeConverter->convertToSimpleType(_rVal, TypeClass_STRING) >>= aRet;
|
|
|
|
break;
|
|
|
|
case DataType::TIMESTAMP:
|
|
|
|
{
|
|
|
|
DateTime aDateTime;
|
|
|
|
|
|
|
|
// check if this is really a timestamp or only a date
|
2005-10-24 07:20:24 +00:00
|
|
|
if ( _rVal >>= aDateTime )
|
2001-05-25 12:11:19 +00:00
|
|
|
{
|
|
|
|
if (bQuote) aRet += ::rtl::OUString::createFromAscii("{TS '");
|
|
|
|
aRet += DBTypeConversion::toDateTimeString(aDateTime);
|
|
|
|
if (bQuote) aRet += ::rtl::OUString::createFromAscii("'}");
|
|
|
|
break;
|
|
|
|
}
|
2005-10-24 07:20:24 +00:00
|
|
|
break;
|
2001-05-25 12:11:19 +00:00
|
|
|
}
|
|
|
|
case DataType::DATE:
|
|
|
|
{
|
|
|
|
Date aDate;
|
|
|
|
sal_Bool bRet = _rVal >>= aDate;
|
|
|
|
OSL_ENSURE(bRet,"DBTypeConversion::toSQLString: _rVal is not date!");
|
|
|
|
if (bQuote) aRet += ::rtl::OUString::createFromAscii("{D '");
|
|
|
|
aRet += DBTypeConversion::toDateString(aDate);;
|
|
|
|
if (bQuote) aRet += ::rtl::OUString::createFromAscii("'}");
|
|
|
|
} break;
|
|
|
|
case DataType::TIME:
|
|
|
|
{
|
|
|
|
Time aTime;
|
|
|
|
sal_Bool bRet = _rVal >>= aTime;
|
|
|
|
OSL_ENSURE(bRet,"DBTypeConversion::toSQLString: _rVal is not time!");
|
|
|
|
if (bQuote) aRet += ::rtl::OUString::createFromAscii("{T '");
|
|
|
|
aRet += DBTypeConversion::toTimeString(aTime);
|
|
|
|
if (bQuote) aRet += ::rtl::OUString::createFromAscii("'}");
|
|
|
|
} break;
|
|
|
|
default:
|
|
|
|
_rxTypeConverter->convertToSimpleType(_rVal, TypeClass_STRING) >>= aRet;
|
|
|
|
}
|
|
|
|
}
|
2001-08-06 05:21:03 +00:00
|
|
|
catch ( const Exception& )
|
2001-05-25 12:11:19 +00:00
|
|
|
{
|
|
|
|
OSL_ENSURE(0,"TypeConversion Error");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
aRet = ::rtl::OUString::createFromAscii(" NULL ");
|
|
|
|
return aRet;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
Date DBTypeConversion::getNULLDate(const Reference< XNumberFormatsSupplier > &xSupplier)
|
|
|
|
{
|
|
|
|
OSL_ENSURE(xSupplier.is(), "getNULLDate : the formatter doesn't implement a supplier !");
|
|
|
|
if (xSupplier.is())
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// get the null date
|
|
|
|
Date aDate;
|
|
|
|
xSupplier->getNumberFormatSettings()->getPropertyValue(::rtl::OUString::createFromAscii("NullDate")) >>= aDate;
|
|
|
|
return aDate;
|
|
|
|
}
|
2001-08-06 05:21:03 +00:00
|
|
|
catch ( const Exception& )
|
2001-05-25 12:11:19 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return getStandardDate();
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void DBTypeConversion::setValue(const Reference<XColumnUpdate>& xVariant,
|
|
|
|
const Reference<XNumberFormatter>& xFormatter,
|
|
|
|
const Date& rNullDate,
|
|
|
|
const ::rtl::OUString& rString,
|
|
|
|
sal_Int32 nKey,
|
|
|
|
sal_Int16 nFieldType,
|
|
|
|
sal_Int16 nKeyType) throw(::com::sun::star::lang::IllegalArgumentException)
|
|
|
|
{
|
|
|
|
double fValue = 0;
|
|
|
|
if (rString.getLength())
|
|
|
|
{
|
|
|
|
// Muss der String formatiert werden?
|
|
|
|
sal_Int16 nTypeClass = nKeyType & ~NumberFormat::DEFINED;
|
|
|
|
sal_Bool bTextFormat = nTypeClass == NumberFormat::TEXT;
|
|
|
|
sal_Int32 nKeyToUse = bTextFormat ? 0 : nKey;
|
|
|
|
sal_Int16 nRealUsedTypeClass = nTypeClass;
|
|
|
|
// bei einem Text-Format muessen wir dem Formatter etwas mehr Freiheiten einraeumen, sonst
|
|
|
|
// wirft convertStringToNumber eine NotNumericException
|
|
|
|
try
|
|
|
|
{
|
|
|
|
fValue = xFormatter->convertStringToNumber(nKeyToUse, rString);
|
|
|
|
sal_Int32 nRealUsedKey = xFormatter->detectNumberFormat(0, rString);
|
|
|
|
if (nRealUsedKey != nKeyToUse)
|
|
|
|
nRealUsedTypeClass = getNumberFormatType(xFormatter, nRealUsedKey) & ~NumberFormat::DEFINED;
|
|
|
|
|
|
|
|
// und noch eine Sonderbehandlung, diesmal fuer Prozent-Formate
|
|
|
|
if ((NumberFormat::NUMBER == nRealUsedTypeClass) && (NumberFormat::PERCENT == nTypeClass))
|
|
|
|
{ // die Formatierung soll eigentlich als Prozent erfolgen, aber der String stellt nur eine
|
|
|
|
// einfache Nummer dar -> anpassen
|
|
|
|
::rtl::OUString sExpanded(rString);
|
|
|
|
static ::rtl::OUString s_sPercentSymbol = ::rtl::OUString::createFromAscii("%");
|
2001-08-06 05:21:03 +00:00
|
|
|
// need a method to add a sal_Unicode to a string, 'til then we use a static string const Exception&
|
2001-05-25 12:11:19 +00:00
|
|
|
sExpanded += s_sPercentSymbol;
|
|
|
|
fValue = xFormatter->convertStringToNumber(nKeyToUse, sExpanded);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (nRealUsedTypeClass)
|
|
|
|
{
|
|
|
|
case NumberFormat::DATE:
|
|
|
|
case NumberFormat::DATETIME:
|
|
|
|
case NumberFormat::TIME:
|
2001-08-06 05:21:03 +00:00
|
|
|
DBTypeConversion::setValue(xVariant,rNullDate,fValue,nRealUsedTypeClass);
|
|
|
|
// xVariant->updateDouble(toStandardDbDate(rNullDate, fValue));
|
|
|
|
break;
|
2001-05-25 12:11:19 +00:00
|
|
|
case NumberFormat::CURRENCY:
|
|
|
|
case NumberFormat::NUMBER:
|
|
|
|
case NumberFormat::SCIENTIFIC:
|
|
|
|
case NumberFormat::FRACTION:
|
|
|
|
case NumberFormat::PERCENT:
|
|
|
|
xVariant->updateDouble(fValue);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
xVariant->updateString(rString);
|
|
|
|
}
|
|
|
|
}
|
2001-08-06 05:21:03 +00:00
|
|
|
catch(const Exception& )
|
2001-05-25 12:11:19 +00:00
|
|
|
{
|
|
|
|
xVariant->updateString(rString);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
switch (nFieldType)
|
|
|
|
{
|
|
|
|
case ::com::sun::star::sdbc::DataType::CHAR:
|
|
|
|
case ::com::sun::star::sdbc::DataType::VARCHAR:
|
|
|
|
case ::com::sun::star::sdbc::DataType::LONGVARCHAR:
|
|
|
|
xVariant->updateString(rString);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
xVariant->updateNull();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
void DBTypeConversion::setValue(const Reference<XColumnUpdate>& xVariant,
|
|
|
|
const Date& rNullDate,
|
|
|
|
const double& rValue,
|
|
|
|
sal_Int16 nKeyType) throw(::com::sun::star::lang::IllegalArgumentException)
|
|
|
|
{
|
|
|
|
switch (nKeyType & ~NumberFormat::DEFINED)
|
|
|
|
{
|
|
|
|
case NumberFormat::DATE:
|
2001-08-06 05:21:03 +00:00
|
|
|
xVariant->updateDate(toDate( rValue, rNullDate));
|
|
|
|
break;
|
2001-05-25 12:11:19 +00:00
|
|
|
case NumberFormat::DATETIME:
|
2001-08-06 05:21:03 +00:00
|
|
|
xVariant->updateTimestamp(toDateTime(rValue,rNullDate));
|
|
|
|
break;
|
|
|
|
case NumberFormat::TIME:
|
|
|
|
xVariant->updateTime(toTime(rValue));
|
2001-05-25 12:11:19 +00:00
|
|
|
break;
|
|
|
|
default:
|
2004-03-15 11:45:47 +00:00
|
|
|
{
|
|
|
|
double nValue = rValue;
|
|
|
|
// Reference<XPropertySet> xProp(xVariant,UNO_QUERY);
|
|
|
|
// if ( xProp.is()
|
|
|
|
// && xProp->getPropertySetInfo()->hasPropertyByName(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISSIGNED))
|
|
|
|
// && !::comphelper::getBOOL(xProp->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISSIGNED))) )
|
|
|
|
// {
|
|
|
|
// switch (::comphelper::getINT32(xProp->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPE))))
|
|
|
|
// {
|
|
|
|
// case DataType::TINYINT:
|
|
|
|
// nValue = static_cast<sal_uInt8>(rValue);
|
|
|
|
// break;
|
|
|
|
// case DataType::SMALLINT:
|
|
|
|
// nValue = static_cast<sal_uInt16>(rValue);
|
|
|
|
// break;
|
|
|
|
// case DataType::INTEGER:
|
|
|
|
// nValue = static_cast<sal_uInt32>(rValue);
|
|
|
|
// break;
|
|
|
|
// case DataType::BIGINT:
|
|
|
|
// nValue = static_cast<sal_uInt64>(rValue);
|
|
|
|
// break;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
xVariant->updateDouble(nValue);
|
|
|
|
}
|
2001-05-25 12:11:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
double DBTypeConversion::getValue(const Reference<XColumn>& xVariant,
|
|
|
|
const Date& rNullDate,
|
|
|
|
sal_Int16 nKeyType)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
switch (nKeyType & ~NumberFormat::DEFINED)
|
|
|
|
{
|
|
|
|
case NumberFormat::DATE:
|
2001-08-06 05:21:03 +00:00
|
|
|
return toDouble( xVariant->getDate(), rNullDate);
|
2001-05-25 12:11:19 +00:00
|
|
|
case NumberFormat::DATETIME:
|
2001-08-06 05:21:03 +00:00
|
|
|
return toDouble(xVariant->getTimestamp(),rNullDate);
|
|
|
|
case NumberFormat::TIME:
|
|
|
|
return toDouble(xVariant->getTime());
|
2001-05-25 12:11:19 +00:00
|
|
|
default:
|
2004-03-15 11:45:47 +00:00
|
|
|
{
|
|
|
|
Reference<XPropertySet> xProp(xVariant,UNO_QUERY);
|
|
|
|
if ( xProp.is()
|
|
|
|
&& xProp->getPropertySetInfo()->hasPropertyByName(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISSIGNED))
|
|
|
|
&& !::comphelper::getBOOL(xProp->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISSIGNED))) )
|
|
|
|
{
|
|
|
|
switch (::comphelper::getINT32(xProp->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPE))))
|
|
|
|
{
|
|
|
|
case DataType::TINYINT:
|
|
|
|
return static_cast<double>(static_cast<sal_uInt8>(xVariant->getByte()));
|
|
|
|
case DataType::SMALLINT:
|
|
|
|
return static_cast<double>(static_cast<sal_uInt16>(xVariant->getShort()));
|
|
|
|
case DataType::INTEGER:
|
|
|
|
return static_cast<double>(static_cast<sal_uInt32>(xVariant->getInt()));
|
|
|
|
case DataType::BIGINT:
|
|
|
|
return static_cast<double>(static_cast<sal_uInt64>(xVariant->getLong()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-05-25 12:11:19 +00:00
|
|
|
return xVariant->getDouble();
|
2004-03-15 11:45:47 +00:00
|
|
|
}
|
2001-05-25 12:11:19 +00:00
|
|
|
}
|
|
|
|
}
|
2001-08-06 05:21:03 +00:00
|
|
|
catch(const Exception& )
|
2001-05-25 12:11:19 +00:00
|
|
|
{
|
|
|
|
return 0.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
2004-03-15 11:45:47 +00:00
|
|
|
::rtl::OUString DBTypeConversion::getValue(const Reference< XPropertySet>& _xColumn,
|
2001-05-25 12:11:19 +00:00
|
|
|
const Reference<XNumberFormatter>& _xFormatter,
|
|
|
|
const ::com::sun::star::lang::Locale& _rLocale,
|
|
|
|
const Date& _rNullDate)
|
|
|
|
{
|
|
|
|
OSL_ENSURE(_xColumn.is() && _xFormatter.is(), "DBTypeConversion::getValue: invalid arg !");
|
|
|
|
if (!_xColumn.is() || !_xFormatter.is())
|
|
|
|
return ::rtl::OUString();
|
|
|
|
|
2001-08-06 05:21:03 +00:00
|
|
|
sal_Int32 nKey;
|
2001-05-25 12:11:19 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
_xColumn->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_FORMATKEY)) >>= nKey;
|
|
|
|
}
|
2001-08-06 05:21:03 +00:00
|
|
|
catch (const Exception& )
|
2001-05-25 12:11:19 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!nKey)
|
|
|
|
{
|
|
|
|
Reference<XNumberFormats> xFormats( _xFormatter->getNumberFormatsSupplier()->getNumberFormats() );
|
|
|
|
Reference<XNumberFormatTypes> xTypeList(_xFormatter->getNumberFormatsSupplier()->getNumberFormats(), UNO_QUERY);
|
|
|
|
|
|
|
|
nKey = ::dbtools::getDefaultNumberFormat(_xColumn,
|
|
|
|
Reference< XNumberFormatTypes > (xFormats, UNO_QUERY),
|
|
|
|
_rLocale);
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2001-05-25 12:11:19 +00:00
|
|
|
}
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2003-09-04 07:23:13 +00:00
|
|
|
sal_Int16 nKeyType = getNumberFormatType(_xFormatter, nKey) & ~NumberFormat::DEFINED;
|
|
|
|
|
2001-05-25 12:11:19 +00:00
|
|
|
return DBTypeConversion::getValue(Reference< XColumn > (_xColumn, UNO_QUERY), _xFormatter, _rNullDate, nKey, nKeyType);
|
|
|
|
}
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2001-05-25 12:11:19 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
::rtl::OUString DBTypeConversion::getValue(const Reference<XColumn>& xVariant,
|
|
|
|
const Reference<XNumberFormatter>& xFormatter,
|
|
|
|
const Date& rNullDate,
|
|
|
|
sal_Int32 nKey,
|
|
|
|
sal_Int16 nKeyType)
|
|
|
|
{
|
|
|
|
::rtl::OUString aString;
|
|
|
|
if (xVariant.is())
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
switch (nKeyType & ~NumberFormat::DEFINED)
|
|
|
|
{
|
|
|
|
case NumberFormat::DATE:
|
|
|
|
case NumberFormat::DATETIME:
|
|
|
|
{
|
2004-03-17 10:54:46 +00:00
|
|
|
// get a value which represents the given date, relative to the given null date
|
|
|
|
double fValue = getValue(xVariant, rNullDate, nKeyType);
|
|
|
|
if ( !xVariant->wasNull() )
|
|
|
|
{
|
|
|
|
// get the null date of the formatter
|
|
|
|
Date aFormatterNullDate( rNullDate );
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Reference< XPropertySet > xFormatterSettings;
|
|
|
|
Reference< XNumberFormatsSupplier > xSupplier( xFormatter->getNumberFormatsSupplier( ) );
|
|
|
|
if ( xSupplier.is() )
|
|
|
|
xFormatterSettings = xSupplier->getNumberFormatSettings();
|
|
|
|
if ( xFormatterSettings.is() )
|
|
|
|
xFormatterSettings->getPropertyValue( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "NullDate" ) ) ) >>= aFormatterNullDate;
|
|
|
|
}
|
|
|
|
catch( const Exception& )
|
|
|
|
{
|
|
|
|
OSL_ENSURE( sal_False, "DBTypeConversion::getValue: caught an exception while retrieving the formatter's NullDate!" );
|
|
|
|
}
|
|
|
|
// get a value which represents the given date, relative to the null date of the formatter
|
|
|
|
fValue -= toDays( rNullDate, aFormatterNullDate );
|
|
|
|
// format this value
|
|
|
|
aString = xFormatter->convertNumberToString( nKey, fValue );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2001-05-25 12:11:19 +00:00
|
|
|
case NumberFormat::TIME:
|
|
|
|
case NumberFormat::NUMBER:
|
|
|
|
case NumberFormat::SCIENTIFIC:
|
|
|
|
case NumberFormat::FRACTION:
|
|
|
|
case NumberFormat::PERCENT:
|
|
|
|
{
|
|
|
|
double fValue = xVariant->getDouble();
|
|
|
|
if (!xVariant->wasNull())
|
|
|
|
aString = xFormatter->convertNumberToString(nKey, fValue);
|
|
|
|
} break;
|
|
|
|
case NumberFormat::CURRENCY:
|
|
|
|
{
|
|
|
|
double fValue = xVariant->getDouble();
|
|
|
|
if (!xVariant->wasNull())
|
|
|
|
aString = xFormatter->getInputString(nKey, fValue);
|
|
|
|
} break;
|
|
|
|
case NumberFormat::TEXT:
|
|
|
|
aString = xFormatter->formatString(nKey, xVariant->getString());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
aString = xVariant->getString();
|
|
|
|
}
|
|
|
|
}
|
2001-08-06 05:21:03 +00:00
|
|
|
catch(const Exception& )
|
2001-05-25 12:11:19 +00:00
|
|
|
{
|
|
|
|
aString = xVariant->getString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return aString;
|
|
|
|
}
|
|
|
|
//------------------------------------------------------------------
|