User: hr Date: 05/09/23 04:35:21 Modified: /dba/connectivity/inc/connectivity/ FValue.hxx
Log: INTEGRATION: CWS dba201b (1.10.124); FILE MERGED 2005/09/21 06:36:38 oj 1.10.124.2: RESYNC: (1.10-1.11); FILE MERGED 2005/07/11 13:27:03 fs 1.10.124.1: merging CWS dba201 into dba201b File Changes: Directory: /dba/connectivity/inc/connectivity/ ============================================== File [changed]: FValue.hxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/inc/connectivity/FValue.hxx?r1=1.11&r2=1.12 Delta lines: +13 -0 -------------------- --- FValue.hxx 8 Sep 2005 04:57:27 -0000 1.11 +++ FValue.hxx 23 Sep 2005 11:35:18 -0000 1.12 @@ -69,6 +69,9 @@ #ifndef _COM_SUN_STAR_UNO_SEQUENCE_HXX_ #include <com/sun/star/uno/Sequence.hxx> #endif +#ifndef _COM_SUN_STAR_SDBC_XROW_HPP_ +#include <com/sun/star/sdbc/XRow.hpp> +#endif namespace connectivity { @@ -344,6 +347,16 @@ // only use for anys ::com::sun::star::uno::Any getAny() const { return *(::com::sun::star::uno::Any*)m_aValue.m_pValue; } ::com::sun::star::uno::Any makeAny() const; + + /** + fetches a single value out of the row + @param _nPos the current column position + @param _nType the type of the current column + @param _xRow the row where to fetch the data from + */ + void fill(sal_Int32 _nPos, + sal_Int32 _nType, + const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRow>& _xRow); }; /// ORowSetValueDecorator decorates a ORowSetValue so the value is "refcounted" --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
