Lines Matching refs:_rValue

1562 	const sal_Int32 _nColumnIndex, const Any& _rValue) SAL_THROW ( ( SQLException, RuntimeException ) )  in implUpdateObject()  argument
1565 switch (_rValue.getValueTypeClass()) in implUpdateObject()
1570 _rValue >>= aInnerValue; in implUpdateObject()
1580 _rxUpdatedObject->updateString(_nColumnIndex, *(rtl::OUString*)_rValue.getValue()); in implUpdateObject()
1584 _rxUpdatedObject->updateBoolean(_nColumnIndex, *(sal_Bool *)_rValue.getValue()); in implUpdateObject()
1588 _rxUpdatedObject->updateByte(_nColumnIndex, *(sal_Int8 *)_rValue.getValue()); in implUpdateObject()
1593 _rxUpdatedObject->updateShort(_nColumnIndex, *(sal_Int16*)_rValue.getValue()); in implUpdateObject()
1597 …_rxUpdatedObject->updateString(_nColumnIndex,::rtl::OUString((sal_Unicode *)_rValue.getValue(),1)); in implUpdateObject()
1602 _rxUpdatedObject->updateInt(_nColumnIndex, *(sal_Int32*)_rValue.getValue()); in implUpdateObject()
1608 OSL_VERIFY( _rValue >>= nValue ); in implUpdateObject()
1614 _rxUpdatedObject->updateFloat(_nColumnIndex, *(float*)_rValue.getValue()); in implUpdateObject()
1618 _rxUpdatedObject->updateDouble(_nColumnIndex, *(double*)_rValue.getValue()); in implUpdateObject()
1622 if (_rValue.getValueType() == ::getCppuType((const Sequence< sal_Int8 > *)0)) in implUpdateObject()
1623 _rxUpdatedObject->updateBytes(_nColumnIndex, *(Sequence<sal_Int8>*)_rValue.getValue()); in implUpdateObject()
1628 if (_rValue.getValueType() == ::getCppuType((const DateTime*)0)) in implUpdateObject()
1629 _rxUpdatedObject->updateTimestamp(_nColumnIndex, *(DateTime*)_rValue.getValue()); in implUpdateObject()
1630 else if (_rValue.getValueType() == ::getCppuType((const Date*)0)) in implUpdateObject()
1631 _rxUpdatedObject->updateDate(_nColumnIndex, *(Date*)_rValue.getValue()); in implUpdateObject()
1632 else if (_rValue.getValueType() == ::getCppuType((const Time*)0)) in implUpdateObject()
1633 _rxUpdatedObject->updateTime(_nColumnIndex, *(Time*)_rValue.getValue()); in implUpdateObject()
1639 if (_rValue.getValueType() == ::getCppuType(static_cast<Reference< XInputStream>*>(NULL))) in implUpdateObject()
1642 _rValue >>= xStream; in implUpdateObject()
1655 …const sal_Int32 _nColumnIndex, const Any& _rValue) SAL_THROW ( ( SQLException, RuntimeException ) ) in implSetObject() argument
1658 switch (_rValue.getValueTypeClass()) in implSetObject()
1663 OSL_VERIFY( _rValue >>= nValue ); in implSetObject()
1671 _rValue >>= aInnerValue; in implSetObject()
1681 _rxParameters->setString(_nColumnIndex, *(rtl::OUString*)_rValue.getValue()); in implSetObject()
1685 _rxParameters->setBoolean(_nColumnIndex, *(sal_Bool *)_rValue.getValue()); in implSetObject()
1689 _rxParameters->setByte(_nColumnIndex, *(sal_Int8 *)_rValue.getValue()); in implSetObject()
1694 _rxParameters->setShort(_nColumnIndex, *(sal_Int16*)_rValue.getValue()); in implSetObject()
1698 _rxParameters->setString(_nColumnIndex, ::rtl::OUString((sal_Unicode *)_rValue.getValue(),1)); in implSetObject()
1703 _rxParameters->setInt(_nColumnIndex, *(sal_Int32*)_rValue.getValue()); in implSetObject()
1707 _rxParameters->setFloat(_nColumnIndex, *(float*)_rValue.getValue()); in implSetObject()
1711 _rxParameters->setDouble(_nColumnIndex, *(double*)_rValue.getValue()); in implSetObject()
1715 if (_rValue.getValueType() == ::getCppuType((const Sequence< sal_Int8 > *)0)) in implSetObject()
1717 _rxParameters->setBytes(_nColumnIndex, *(Sequence<sal_Int8>*)_rValue.getValue()); in implSetObject()
1723 if (_rValue.getValueType() == ::getCppuType((const DateTime*)0)) in implSetObject()
1724 _rxParameters->setTimestamp(_nColumnIndex, *(DateTime*)_rValue.getValue()); in implSetObject()
1725 else if (_rValue.getValueType() == ::getCppuType((const Date*)0)) in implSetObject()
1726 _rxParameters->setDate(_nColumnIndex, *(Date*)_rValue.getValue()); in implSetObject()
1727 else if (_rValue.getValueType() == ::getCppuType((const Time*)0)) in implSetObject()
1728 _rxParameters->setTime(_nColumnIndex, *(Time*)_rValue.getValue()); in implSetObject()
1734 if (_rValue.getValueType() == ::getCppuType(static_cast<Reference< XInputStream>*>(NULL))) in implSetObject()
1737 _rValue >>= xStream; in implSetObject()
1912 const ::connectivity::ORowSetValue& _rValue, in setObjectWithInfo()
1916 if ( _rValue.isNull() ) in setObjectWithInfo()
1924 _xParams->setObjectWithInfo(parameterIndex,_rValue.makeAny(),sqlType,scale); in setObjectWithInfo()
1929 _xParams->setString(parameterIndex,_rValue); in setObjectWithInfo()
1933 Any x(_rValue.makeAny()); in setObjectWithInfo()
1952 if ( _rValue.isSigned() ) in setObjectWithInfo()
1953 _xParams->setLong(parameterIndex,_rValue); in setObjectWithInfo()
1955 _xParams->setString(parameterIndex,_rValue); in setObjectWithInfo()
1959 _xParams->setFloat(parameterIndex,_rValue); in setObjectWithInfo()
1963 _xParams->setDouble(parameterIndex,_rValue); in setObjectWithInfo()
1966 _xParams->setDate(parameterIndex,_rValue); in setObjectWithInfo()
1969 _xParams->setTime(parameterIndex,_rValue); in setObjectWithInfo()
1972 _xParams->setTimestamp(parameterIndex,_rValue); in setObjectWithInfo()
1979 Any x(_rValue.makeAny()); in setObjectWithInfo()
2005 _xParams->setBoolean(parameterIndex,_rValue); in setObjectWithInfo()
2008 if ( _rValue.isSigned() ) in setObjectWithInfo()
2009 _xParams->setByte(parameterIndex,_rValue); in setObjectWithInfo()
2011 _xParams->setShort(parameterIndex,_rValue); in setObjectWithInfo()
2014 if ( _rValue.isSigned() ) in setObjectWithInfo()
2015 _xParams->setShort(parameterIndex,_rValue); in setObjectWithInfo()
2017 _xParams->setInt(parameterIndex,_rValue); in setObjectWithInfo()
2020 if ( _rValue.isSigned() ) in setObjectWithInfo()
2021 _xParams->setInt(parameterIndex,_rValue); in setObjectWithInfo()
2023 _xParams->setLong(parameterIndex,_rValue); in setObjectWithInfo()