LibreOffice Module connectivity (master) 1
Public Member Functions | Private Member Functions | Private Attributes | List of all members
connectivity::ORowSetValue Class Reference

#include <FValue.hxx>

Public Member Functions

 ORowSetValue ()
 
 ORowSetValue (const ORowSetValue &_rRH)
 
 ORowSetValue (ORowSetValue &&_rRH) noexcept
 
 ORowSetValue (const OUString &_rRH)
 
 ORowSetValue (const double &_rRH)
 
 ORowSetValue (float _rRH)
 
 ORowSetValue (sal_Int8 _rRH)
 
 ORowSetValue (sal_Int16 _rRH)
 
 ORowSetValue (sal_uInt16 _rRH)
 
 ORowSetValue (sal_Int32 _rRH)
 
 ORowSetValue (sal_uInt32 _rRH)
 
 ORowSetValue (sal_Int64 _rRH)
 
 ORowSetValue (sal_uInt64 _rRH)
 
 ORowSetValue (bool _rRH)
 
 ORowSetValue (sal_Bool)=delete
 
 ORowSetValue (const css::util::Date &_rRH)
 
 ORowSetValue (const css::util::Time &_rRH)
 
 ORowSetValue (const css::util::DateTime &_rRH)
 
 ORowSetValue (const css::uno::Sequence< sal_Int8 > &_rRH)
 
template<typename T >
 ORowSetValue (T const *)=delete
 
 ~ORowSetValue ()
 
ORowSetValueoperator= (const ORowSetValue &_rRH)
 
ORowSetValueoperator= (ORowSetValue &&_rRH) noexcept
 
ORowSetValueoperator= (bool _rRH)
 
void operator= (sal_Bool)=delete
 
ORowSetValueoperator= (sal_Int8 _rRH)
 
ORowSetValueoperator= (sal_Int16 _rRH)
 
ORowSetValueoperator= (sal_uInt16 _rRH)
 
ORowSetValueoperator= (sal_Int32 _rRH)
 
ORowSetValueoperator= (sal_uInt32 _rRH)
 
ORowSetValueoperator= (sal_Int64 _rRH)
 
ORowSetValueoperator= (sal_uInt64 _rRH)
 
ORowSetValueoperator= (double _rRH)
 
ORowSetValueoperator= (float _rRH)
 
ORowSetValueoperator= (const css::util::Date &_rRH)
 
ORowSetValueoperator= (const css::util::Time &_rRH)
 
ORowSetValueoperator= (const css::util::DateTime &_rRH)
 
ORowSetValueoperator= (const OUString &_rRH)
 
ORowSetValueoperator= (const css::uno::Sequence< sal_Int8 > &_rRH)
 
ORowSetValueoperator= (const css::uno::Any &_rAny)
 
bool operator== (const ORowSetValue &_rRH) const
 
bool operator!= (const ORowSetValue &_rRH) const
 
bool isNull () const
 
void setNull ()
 
bool isBound () const
 
void setBound (bool _bBound)
 
bool isModified () const
 
void setModified (bool _bMod)
 
bool isSigned () const
 
void setSigned (bool _bSig)
 
sal_Int32 getTypeKind () const
 
void setTypeKind (sal_Int32 _eType)
 
bool getBool () const
 
sal_Int8 getInt8 () const
 
sal_uInt8 getUInt8 () const
 
sal_Int16 getInt16 () const
 
sal_uInt16 getUInt16 () const
 
sal_Int32 getInt32 () const
 
sal_uInt32 getUInt32 () const
 
sal_Int64 getLong () const
 
sal_uInt64 getULong () const
 
double getDouble () const
 
float getFloat () const
 
OUString getString () const
 
css::util::Date getDate () const
 
css::util::Time getTime () const
 
css::util::DateTime getDateTime () const
 
css::uno::Sequence< sal_Int8getSequence () const
 
const css::uno::Any & getAny () const
 
css::uno::Any makeAny () const
 
void fill (sal_Int32 _nPos, sal_Int32 _nType, const css::uno::Reference< css::sdbc::XRow > &_xRow)
 fetches a single value out of the row More...
 
void fill (sal_Int32 _nPos, sal_Int32 _nType, bool _bNullable, const css::uno::Reference< css::sdbc::XRow > &_xRow)
 fetches a single value out of the row More...
 
void fill (const css::uno::Any &_rValue)
 
void fill (const sal_Int32 _nType, const css::uno::Reference< css::sdb::XColumn > &_rxColumn)
 

Private Member Functions

void free () noexcept
 
void impl_fill (const sal_Int32 _nType, bool _bNullable, const detail::IValueSource &_rValueSource)
 

Private Attributes

union {
   bool   m_bBool
 
   sal_Int8   m_nInt8
 
   sal_uInt8   m_uInt8
 
   sal_Int16   m_nInt16
 
   sal_uInt16   m_uInt16
 
   sal_Int32   m_nInt32
 
   sal_uInt32   m_uInt32
 
   sal_Int64   m_nInt64
 
   sal_uInt64   m_uInt64
 
   float   m_nFloat
 
   double   m_nDouble
 
   rtl_uString *   m_pString
 
   void *   m_pValue
 
m_aValue
 
sal_Int32 m_eTypeKind
 
bool m_bNull: 1
 
bool m_bBound: 1
 
bool m_bModified: 1
 
bool m_bSigned: 1
 

Detailed Description

Definition at line 46 of file FValue.hxx.

Constructor & Destructor Documentation

◆ ORowSetValue() [1/20]

connectivity::ORowSetValue::ORowSetValue ( )
inline

Definition at line 81 of file FValue.hxx.

References m_pString.

◆ ORowSetValue() [2/20]

connectivity::ORowSetValue::ORowSetValue ( const ORowSetValue _rRH)
inline

Definition at line 91 of file FValue.hxx.

◆ ORowSetValue() [3/20]

connectivity::ORowSetValue::ORowSetValue ( ORowSetValue &&  _rRH)
inlinenoexcept

Definition at line 102 of file FValue.hxx.

◆ ORowSetValue() [4/20]

connectivity::ORowSetValue::ORowSetValue ( const OUString &  _rRH)
inline

Definition at line 113 of file FValue.hxx.

◆ ORowSetValue() [5/20]

connectivity::ORowSetValue::ORowSetValue ( const double &  _rRH)
inline

Definition at line 124 of file FValue.hxx.

References DOUBLE.

◆ ORowSetValue() [6/20]

connectivity::ORowSetValue::ORowSetValue ( float  _rRH)
inline

Definition at line 135 of file FValue.hxx.

References FLOAT.

◆ ORowSetValue() [7/20]

connectivity::ORowSetValue::ORowSetValue ( sal_Int8  _rRH)
inline

Definition at line 146 of file FValue.hxx.

◆ ORowSetValue() [8/20]

connectivity::ORowSetValue::ORowSetValue ( sal_Int16  _rRH)
inline

Definition at line 157 of file FValue.hxx.

◆ ORowSetValue() [9/20]

connectivity::ORowSetValue::ORowSetValue ( sal_uInt16  _rRH)
inline

Definition at line 167 of file FValue.hxx.

◆ ORowSetValue() [10/20]

connectivity::ORowSetValue::ORowSetValue ( sal_Int32  _rRH)
inline

Definition at line 177 of file FValue.hxx.

◆ ORowSetValue() [11/20]

connectivity::ORowSetValue::ORowSetValue ( sal_uInt32  _rRH)
inline

Definition at line 187 of file FValue.hxx.

◆ ORowSetValue() [12/20]

connectivity::ORowSetValue::ORowSetValue ( sal_Int64  _rRH)
inline

Definition at line 197 of file FValue.hxx.

◆ ORowSetValue() [13/20]

connectivity::ORowSetValue::ORowSetValue ( sal_uInt64  _rRH)
inline

Definition at line 207 of file FValue.hxx.

◆ ORowSetValue() [14/20]

connectivity::ORowSetValue::ORowSetValue ( bool  _rRH)
inline

Definition at line 218 of file FValue.hxx.

◆ ORowSetValue() [15/20]

connectivity::ORowSetValue::ORowSetValue ( sal_Bool  )
delete

◆ ORowSetValue() [16/20]

connectivity::ORowSetValue::ORowSetValue ( const css::util::Date &  _rRH)
inline

Definition at line 230 of file FValue.hxx.

References DATE.

◆ ORowSetValue() [17/20]

connectivity::ORowSetValue::ORowSetValue ( const css::util::Time &  _rRH)
inline

Definition at line 241 of file FValue.hxx.

References TIME.

◆ ORowSetValue() [18/20]

connectivity::ORowSetValue::ORowSetValue ( const css::util::DateTime &  _rRH)
inline

Definition at line 252 of file FValue.hxx.

◆ ORowSetValue() [19/20]

connectivity::ORowSetValue::ORowSetValue ( const css::uno::Sequence< sal_Int8 > &  _rRH)
inline

Definition at line 263 of file FValue.hxx.

◆ ORowSetValue() [20/20]

template<typename T >
connectivity::ORowSetValue::ORowSetValue ( T const *  )
delete

◆ ~ORowSetValue()

connectivity::ORowSetValue::~ORowSetValue ( )
inline

Definition at line 277 of file FValue.hxx.

Member Function Documentation

◆ fill() [1/4]

void connectivity::ORowSetValue::fill ( const css::uno::Any &  _rValue)

◆ fill() [2/4]

void connectivity::ORowSetValue::fill ( const sal_Int32  _nType,
const css::uno::Reference< css::sdb::XColumn > &  _rxColumn 
)

◆ fill() [3/4]

void connectivity::ORowSetValue::fill ( sal_Int32  _nPos,
sal_Int32  _nType,
bool  _bNullable,
const css::uno::Reference< css::sdbc::XRow > &  _xRow 
)

fetches a single value out of the row

Parameters
_nPosthe current column position
_nTypethe type of the current column
_bNullableif true then it will be checked if the result could be NULL, otherwise not.
_xRowthe row where to fetch the data from

◆ fill() [4/4]

void connectivity::ORowSetValue::fill ( sal_Int32  _nPos,
sal_Int32  _nType,
const css::uno::Reference< css::sdbc::XRow > &  _xRow 
)

fetches a single value out of the row

Parameters
_nPosthe current column position
_nTypethe type of the current column
_xRowthe row where to fetch the data from

Definition at line 2215 of file FValue.cxx.

References _nPos, and fill().

Referenced by fill(), connectivity::ODatabaseMetaDataBase::getTypeInfo(), dbtools::setObjectWithInfo(), and connectivity::java_sql_PreparedStatement::setObjectWithInfo().

◆ free()

void connectivity::ORowSetValue::free ( )
privatenoexcept

Definition at line 261 of file FValue.cxx.

References Any, m_aValue, m_bNull, and m_eTypeKind.

Referenced by operator=().

◆ getAny()

const css::uno::Any & connectivity::ORowSetValue::getAny ( ) const
inline

Definition at line 366 of file FValue.hxx.

Referenced by getString(), and makeAny().

◆ getBool()

bool connectivity::ORowSetValue::getBool ( ) const

◆ getDate()

css::util::Date connectivity::ORowSetValue::getDate ( ) const

◆ getDateTime()

css::util::DateTime connectivity::ORowSetValue::getDateTime ( ) const

◆ getDouble()

double connectivity::ORowSetValue::getDouble ( ) const

Definition at line 1745 of file FValue.cxx.

References Any, getTypeKind(), m_aValue, m_bNull, m_bSigned, makeAny(), and dbtools::DBTypeConversion::toDouble().

Referenced by connectivity::dbase::ONDXKey::Compare(), connectivity::dbase::ODbaseIndex::ConvertToKey(), connectivity::file::ONumOperator::Exec(), connectivity::file::OPredicateCompiler::execute_BETWEEN(), getDate(), getDateTime(), connectivity::ODatabaseMetaDataResultSet::getDouble(), connectivity::file::OResultSet::getDouble(), getString(), getTime(), connectivity::file::OOperand::isValid(), connectivity::file::OOp_COMPARE::operate(), connectivity::file::OOp_Abs::operate(), connectivity::file::OOp_Sign::operate(), connectivity::file::OOp_Floor::operate(), connectivity::file::OOp_Ceiling::operate(), connectivity::file::OOp_Exp::operate(), connectivity::file::OOp_Ln::operate(), connectivity::file::OOp_Log10::operate(), connectivity::file::OOp_Sqrt::operate(), connectivity::file::OOp_Cos::operate(), connectivity::file::OOp_Sin::operate(), connectivity::file::OOp_Tan::operate(), connectivity::file::OOp_ACos::operate(), connectivity::file::OOp_ASin::operate(), connectivity::file::OOp_ATan::operate(), connectivity::file::OOp_Degrees::operate(), connectivity::file::OOp_Radians::operate(), connectivity::file::OOp_Mod::operate(), connectivity::file::OOp_Pow::operate(), connectivity::file::OOp_ATan2::operate(), operator==(), connectivity::dbase::ONDXPage::PrintPage(), connectivity::firebird::OResultSet::retrieveValue(), setTypeKind(), and connectivity::dbase::ONDXNode::Write().

◆ getFloat()

float connectivity::ORowSetValue::getFloat ( ) const

◆ getInt16()

sal_Int16 connectivity::ORowSetValue::getInt16 ( ) const

◆ getInt32()

sal_Int32 connectivity::ORowSetValue::getInt32 ( ) const

◆ getInt8()

sal_Int8 connectivity::ORowSetValue::getInt8 ( ) const

◆ getLong()

sal_Int64 connectivity::ORowSetValue::getLong ( ) const

◆ getSequence()

Sequence< sal_Int8 > connectivity::ORowSetValue::getSequence ( ) const

◆ getString()

OUString connectivity::ORowSetValue::getString ( ) const

◆ getTime()

css::util::Time connectivity::ORowSetValue::getTime ( ) const

◆ getTypeKind()

sal_Int32 connectivity::ORowSetValue::getTypeKind ( ) const
inline

◆ getUInt16()

sal_uInt16 connectivity::ORowSetValue::getUInt16 ( ) const

Definition at line 1306 of file FValue.cxx.

References Any, getTypeKind(), m_aValue, m_bNull, m_bSigned, and makeAny().

◆ getUInt32()

sal_uInt32 connectivity::ORowSetValue::getUInt32 ( ) const

Definition at line 1450 of file FValue.cxx.

References Any, getTypeKind(), m_aValue, m_bNull, m_bSigned, makeAny(), and dbtools::DBTypeConversion::toDays().

Referenced by getString(), and setTypeKind().

◆ getUInt8()

sal_uInt8 connectivity::ORowSetValue::getUInt8 ( ) const

Definition at line 1160 of file FValue.cxx.

References Any, getTypeKind(), m_aValue, m_bNull, m_bSigned, makeAny(), and n.

◆ getULong()

sal_uInt64 connectivity::ORowSetValue::getULong ( ) const

Definition at line 1596 of file FValue.cxx.

References Any, getTypeKind(), m_aValue, m_bNull, m_bSigned, makeAny(), and dbtools::DBTypeConversion::toDays().

Referenced by getString(), and setTypeKind().

◆ impl_fill()

void connectivity::ORowSetValue::impl_fill ( const sal_Int32  _nType,
bool  _bNullable,
const detail::IValueSource _rValueSource 
)
private

◆ isBound()

bool connectivity::ORowSetValue::isBound ( ) const
inline

Definition at line 331 of file FValue.hxx.

Referenced by connectivity::ORowSetValueDecorator::isBound(), and makeAny().

◆ isModified()

bool connectivity::ORowSetValue::isModified ( ) const
inline

Definition at line 334 of file FValue.hxx.

◆ isNull()

bool connectivity::ORowSetValue::isNull ( ) const
inline

Definition at line 320 of file FValue.hxx.

Referenced by connectivity::dbase::ONDXKey::Compare(), connectivity::dbase::ODbaseIndex::ConvertToKey(), connectivity::dbase::OIndexIterator::GetCompare(), connectivity::dbase::OIndexIterator::GetNull(), makeAny(), connectivity::file::OOp_ISNULL::operate(), connectivity::file::OOp_LIKE::operate(), connectivity::file::OOp_COMPARE::operate(), connectivity::file::OOp_DayOfWeek::operate(), connectivity::file::OOp_DayOfMonth::operate(), connectivity::file::OOp_DayOfYear::operate(), connectivity::file::OOp_Month::operate(), connectivity::file::OOp_DayName::operate(), connectivity::file::OOp_MonthName::operate(), connectivity::file::OOp_Quarter::operate(), connectivity::file::OOp_Year::operate(), connectivity::file::OOp_Hour::operate(), connectivity::file::OOp_Minute::operate(), connectivity::file::OOp_Second::operate(), connectivity::file::OOp_Abs::operate(), connectivity::file::OOp_Sign::operate(), connectivity::file::OOp_Floor::operate(), connectivity::file::OOp_Ceiling::operate(), connectivity::file::OOp_Exp::operate(), connectivity::file::OOp_Ln::operate(), connectivity::file::OOp_Log10::operate(), connectivity::file::OOp_Sqrt::operate(), connectivity::file::OOp_Cos::operate(), connectivity::file::OOp_Sin::operate(), connectivity::file::OOp_Tan::operate(), connectivity::file::OOp_ACos::operate(), connectivity::file::OOp_ASin::operate(), connectivity::file::OOp_ATan::operate(), connectivity::file::OOp_Degrees::operate(), connectivity::file::OOp_Radians::operate(), connectivity::file::OOp_Upper::operate(), connectivity::file::OOp_Lower::operate(), connectivity::file::OOp_Ascii::operate(), connectivity::file::OOp_CharLength::operate(), connectivity::file::OOp_LTrim::operate(), connectivity::file::OOp_RTrim::operate(), connectivity::file::OOp_Space::operate(), connectivity::file::OOp_Mod::operate(), connectivity::file::OOp_Pow::operate(), connectivity::file::OOp_ATan2::operate(), connectivity::file::OOp_Repeat::operate(), connectivity::file::OOp_Left::operate(), connectivity::file::OOp_Right::operate(), operator==(), connectivity::dbase::ONDXPage::PrintPage(), and connectivity::dbase::ONDXNode::Write().

◆ isSigned()

bool connectivity::ORowSetValue::isSigned ( ) const
inline

Definition at line 337 of file FValue.hxx.

Referenced by impl_fill().

◆ makeAny()

Any connectivity::ORowSetValue::makeAny ( ) const

◆ operator!=()

bool connectivity::ORowSetValue::operator!= ( const ORowSetValue _rRH) const
inline

Definition at line 315 of file FValue.hxx.

◆ operator=() [1/19]

ORowSetValue & connectivity::ORowSetValue::operator= ( bool  _rRH)

Definition at line 652 of file FValue.cxx.

References free(), m_aValue, m_bNull, and m_eTypeKind.

◆ operator=() [2/19]

ORowSetValue & connectivity::ORowSetValue::operator= ( const css::uno::Any &  _rAny)

◆ operator=() [3/19]

ORowSetValue & connectivity::ORowSetValue::operator= ( const css::uno::Sequence< sal_Int8 > &  _rRH)

◆ operator=() [4/19]

ORowSetValue & connectivity::ORowSetValue::operator= ( const css::util::Date &  _rRH)

◆ operator=() [5/19]

ORowSetValue & connectivity::ORowSetValue::operator= ( const css::util::DateTime &  _rRH)

◆ operator=() [6/19]

ORowSetValue & connectivity::ORowSetValue::operator= ( const css::util::Time &  _rRH)

Definition at line 507 of file FValue.cxx.

References free(), m_aValue, m_bNull, m_eTypeKind, and Time.

◆ operator=() [7/19]

ORowSetValue & connectivity::ORowSetValue::operator= ( const ORowSetValue _rRH)

◆ operator=() [8/19]

ORowSetValue & connectivity::ORowSetValue::operator= ( const OUString &  _rRH)

Definition at line 541 of file FValue.cxx.

References free(), m_aValue, m_bNull, and m_eTypeKind.

◆ operator=() [9/19]

ORowSetValue & connectivity::ORowSetValue::operator= ( double  _rRH)

Definition at line 557 of file FValue.cxx.

References free(), m_aValue, m_bNull, and m_eTypeKind.

◆ operator=() [10/19]

ORowSetValue & connectivity::ORowSetValue::operator= ( float  _rRH)

Definition at line 569 of file FValue.cxx.

References free(), m_aValue, m_bNull, and m_eTypeKind.

◆ operator=() [11/19]

ORowSetValue & connectivity::ORowSetValue::operator= ( ORowSetValue &&  _rRH)
noexcept

Definition at line 472 of file FValue.cxx.

◆ operator=() [12/19]

void connectivity::ORowSetValue::operator= ( sal_Bool  )
delete

◆ operator=() [13/19]

ORowSetValue & connectivity::ORowSetValue::operator= ( sal_Int16  _rRH)

Definition at line 594 of file FValue.cxx.

References free(), m_aValue, m_bNull, m_bSigned, and m_eTypeKind.

◆ operator=() [14/19]

ORowSetValue & connectivity::ORowSetValue::operator= ( sal_Int32  _rRH)

Definition at line 622 of file FValue.cxx.

References free(), m_aValue, m_bNull, m_bSigned, and m_eTypeKind.

◆ operator=() [15/19]

ORowSetValue & connectivity::ORowSetValue::operator= ( sal_Int64  _rRH)

Definition at line 664 of file FValue.cxx.

References free(), m_aValue, m_bNull, m_bSigned, and m_eTypeKind.

◆ operator=() [16/19]

ORowSetValue & connectivity::ORowSetValue::operator= ( sal_Int8  _rRH)

Definition at line 582 of file FValue.cxx.

References free(), m_aValue, m_bNull, m_bSigned, and m_eTypeKind.

◆ operator=() [17/19]

ORowSetValue & connectivity::ORowSetValue::operator= ( sal_uInt16  _rRH)

Definition at line 608 of file FValue.cxx.

References free(), m_aValue, m_bNull, m_bSigned, and m_eTypeKind.

◆ operator=() [18/19]

ORowSetValue & connectivity::ORowSetValue::operator= ( sal_uInt32  _rRH)

Definition at line 637 of file FValue.cxx.

References free(), m_aValue, m_bNull, m_bSigned, and m_eTypeKind.

◆ operator=() [19/19]

ORowSetValue & connectivity::ORowSetValue::operator= ( sal_uInt64  _rRH)

Definition at line 677 of file FValue.cxx.

References free(), m_aValue, m_bNull, m_bSigned, and m_eTypeKind.

◆ operator==()

bool connectivity::ORowSetValue::operator== ( const ORowSetValue _rRH) const

◆ setBound()

void connectivity::ORowSetValue::setBound ( bool  _bBound)
inline

◆ setModified()

void connectivity::ORowSetValue::setModified ( bool  _bMod)
inline

Definition at line 335 of file FValue.hxx.

Referenced by connectivity::ORowSetValueDecorator::setModified().

◆ setNull()

void connectivity::ORowSetValue::setNull ( )
inline

◆ setSigned()

void connectivity::ORowSetValue::setSigned ( bool  _bSig)

Definition at line 2047 of file FValue.cxx.

References getInt16(), getInt32(), getInt8(), getLong(), m_aValue, m_bNull, m_bSigned, m_eTypeKind, and nType.

◆ setTypeKind()

void connectivity::ORowSetValue::setTypeKind ( sal_Int32  _eType)

Member Data Documentation

◆ 

union { ... } connectivity::ORowSetValue::m_aValue

◆ m_bBool

bool connectivity::ORowSetValue::m_bBool

Definition at line 50 of file FValue.hxx.

Referenced by operator=(), and operator==().

◆ m_bBound

bool connectivity::ORowSetValue::m_bBound
private

Definition at line 74 of file FValue.hxx.

Referenced by operator=().

◆ m_bModified

bool connectivity::ORowSetValue::m_bModified
private

Definition at line 75 of file FValue.hxx.

◆ m_bNull

bool connectivity::ORowSetValue::m_bNull
private

◆ m_bSigned

bool connectivity::ORowSetValue::m_bSigned
private

◆ m_eTypeKind

sal_Int32 connectivity::ORowSetValue::m_eTypeKind
private

◆ m_nDouble

double connectivity::ORowSetValue::m_nDouble

Definition at line 65 of file FValue.hxx.

Referenced by operator=(), and operator==().

◆ m_nFloat

float connectivity::ORowSetValue::m_nFloat

Definition at line 64 of file FValue.hxx.

Referenced by operator=(), and operator==().

◆ m_nInt16

sal_Int16 connectivity::ORowSetValue::m_nInt16

Definition at line 55 of file FValue.hxx.

Referenced by operator=(), and operator==().

◆ m_nInt32

sal_Int32 connectivity::ORowSetValue::m_nInt32

Definition at line 58 of file FValue.hxx.

Referenced by operator=(), and operator==().

◆ m_nInt64

sal_Int64 connectivity::ORowSetValue::m_nInt64

Definition at line 61 of file FValue.hxx.

Referenced by operator=(), and operator==().

◆ m_nInt8

sal_Int8 connectivity::ORowSetValue::m_nInt8

Definition at line 52 of file FValue.hxx.

Referenced by operator=(), and operator==().

◆ m_pString

rtl_uString* connectivity::ORowSetValue::m_pString

Definition at line 67 of file FValue.hxx.

Referenced by operator=(), operator==(), and ORowSetValue().

◆ m_pValue

void* connectivity::ORowSetValue::m_pValue

Definition at line 69 of file FValue.hxx.

Referenced by operator=(), and operator==().

◆ m_uInt16

sal_uInt16 connectivity::ORowSetValue::m_uInt16

Definition at line 56 of file FValue.hxx.

Referenced by operator=(), and operator==().

◆ m_uInt32

sal_uInt32 connectivity::ORowSetValue::m_uInt32

Definition at line 59 of file FValue.hxx.

Referenced by operator=(), and operator==().

◆ m_uInt64

sal_uInt64 connectivity::ORowSetValue::m_uInt64

Definition at line 62 of file FValue.hxx.

Referenced by operator=(), and operator==().

◆ m_uInt8

sal_uInt8 connectivity::ORowSetValue::m_uInt8

Definition at line 53 of file FValue.hxx.

Referenced by operator=(), and operator==().


The documentation for this class was generated from the following files: