summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2001-02-19 07:08:32 +0000
committerOcke Janssen <oj@openoffice.org>2001-02-19 07:08:32 +0000
commit2a1288fcfd4dfeb2c22674d6acb04db10a0a45ec (patch)
treebc87e6fbaa09c63bc2f4d3f47498facc311f5784 /connectivity
parent7b5af0f7d2ccb8186248e73b0687325b8638aa8b (diff)
#83816# count(*) corrected
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/file/FResultSet.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/file/FResultSet.cxx b/connectivity/source/drivers/file/FResultSet.cxx
index 57de5826a443..97f4ed36878d 100644
--- a/connectivity/source/drivers/file/FResultSet.cxx
+++ b/connectivity/source/drivers/file/FResultSet.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: FResultSet.cxx,v $
*
- * $Revision: 1.32 $
+ * $Revision: 1.33 $
*
- * last change: $Author: oj $ $Date: 2001-02-14 07:21:05 $
+ * last change: $Author: oj $ $Date: 2001-02-19 08:08:32 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1376,7 +1376,7 @@ BOOL OResultSet::Move(OFileTable::FilePosition eCursorPosition, INT32 nOffset, B
{
// COUNT(*) in Ergebnisrow packen
// (muss die erste und einzige Variable in der Row sein)
- if (m_aRow->size() == 2)
+ if (m_aRow->size() >= 2)
{
(*m_aRow)[1] = m_nRowCountResult;
(*m_aRow)[0] = sal_Int32(1);