summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2005-09-23 10:35:18 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2005-09-23 10:35:18 +0000
commit30b00e9309d0343c6f413d57d77ea20d5ec56d29 (patch)
treef8b1b73fe9cfdef8e6b7febec855a540dcf71108 /connectivity
parent587fdfd0a03aa24b2531a65fdae27ffcd17b839c (diff)
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
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/inc/connectivity/FValue.hxx17
1 files changed, 15 insertions, 2 deletions
diff --git a/connectivity/inc/connectivity/FValue.hxx b/connectivity/inc/connectivity/FValue.hxx
index dfb25260f4b4..d85896122d0a 100644
--- a/connectivity/inc/connectivity/FValue.hxx
+++ b/connectivity/inc/connectivity/FValue.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: FValue.hxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 04:57:27 $
+ * last change: $Author: hr $ $Date: 2005-09-23 11:35:18 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -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 @@ namespace connectivity
// 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"