summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2003-09-04 07:23:56 +0000
committerOliver Bolte <obo@openoffice.org>2003-09-04 07:23:56 +0000
commit961912a45ec4f8c3f0c327cee81714e58502ae26 (patch)
tree562eff6ef161585bd0ad44bb342397ed4cfef671 /connectivity
parent2fbb8a26ccd91985408e5f46fb690db4fd9cc5a8 (diff)
INTEGRATION: CWS oj4 (1.20.100); FILE MERGED
2003/06/27 13:37:52 oj 1.20.100.1: #i14648# implement string functions for file based drivers
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/dbase/DResultSet.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/dbase/DResultSet.cxx b/connectivity/source/drivers/dbase/DResultSet.cxx
index bee7e4347351..eb1b4cbcff10 100644
--- a/connectivity/source/drivers/dbase/DResultSet.cxx
+++ b/connectivity/source/drivers/dbase/DResultSet.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: DResultSet.cxx,v $
*
- * $Revision: 1.20 $
+ * $Revision: 1.21 $
*
- * last change: $Author: oj $ $Date: 2001-11-15 15:20:06 $
+ * last change: $Author: obo $ $Date: 2003-09-04 08:23:56 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -146,7 +146,7 @@ Any SAL_CALL ODbaseResultSet::getBookmark( ) throw( SQLException, RuntimeExcep
checkDisposed(OResultSet_BASE::rBHelper.bDisposed);
OSL_ENSURE((m_bShowDeleted || !m_aRow->isDeleted()),"getBookmark called for deleted row");
- return makeAny((sal_Int32)(*m_aRow)[0]);
+ return makeAny((sal_Int32)(*m_aRow)[0]->getValue());
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ODbaseResultSet::moveToBookmark( const Any& bookmark ) throw( SQLException, RuntimeException)