summaryrefslogtreecommitdiff
path: root/connectivity/source/inc
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2001-10-01 10:24:29 +0000
committerOcke Janssen <oj@openoffice.org>2001-10-01 10:24:29 +0000
commitb75c8e2d989a250403c079d88b779119d87deba1 (patch)
tree8f68dcf33b48e8cd8fa8e79e4c8d03c2c7244743 /connectivity/source/inc
parent28470b188ccd9e1ebfdc15cf08fed727fe7d8bbc (diff)
#92613# unbound evaluationrow fixed
Diffstat (limited to 'connectivity/source/inc')
-rw-r--r--connectivity/source/inc/file/FPreparedStatement.hxx6
-rw-r--r--connectivity/source/inc/file/FStatement.hxx7
2 files changed, 7 insertions, 6 deletions
diff --git a/connectivity/source/inc/file/FPreparedStatement.hxx b/connectivity/source/inc/file/FPreparedStatement.hxx
index 448a5db96c59..ecb115bae27f 100644
--- a/connectivity/source/inc/file/FPreparedStatement.hxx
+++ b/connectivity/source/inc/file/FPreparedStatement.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: FPreparedStatement.hxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: oj $ $Date: 2001-08-24 06:00:38 $
+ * last change: $Author: oj $ $Date: 2001-10-01 11:24:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -104,7 +104,6 @@ namespace connectivity
//====================================================================
::std::vector<sal_Int32> m_aParameterIndexes; // maps the parameter index to column index
::rtl::OUString m_aSql;
- OValueRow m_aEvaluateRow; // contains all values of a row
OValueRow m_aParameterRow;
ORefAssignValues m_aAssignValues; // needed for insert,update and parameters
// to compare with the restrictions
@@ -112,7 +111,6 @@ namespace connectivity
::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSetMetaData> m_xMetaData;
OResultSet* m_pResultSet;
- TIntVector* m_pEvaluationKeySet;
::vos::ORef<connectivity::OSQLColumns> m_xParamColumns; // the parameter columns
// factory method for resultset's
diff --git a/connectivity/source/inc/file/FStatement.hxx b/connectivity/source/inc/file/FStatement.hxx
index 2e670fa1ba4e..41cb495d30ab 100644
--- a/connectivity/source/inc/file/FStatement.hxx
+++ b/connectivity/source/inc/file/FStatement.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: FStatement.hxx,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: oj $ $Date: 2001-08-29 12:14:43 $
+ * last change: $Author: oj $ $Date: 2001-10-01 11:24:23 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -154,8 +154,11 @@ namespace connectivity
connectivity::OSQLParseNode* m_pParseTree;
OSQLAnalyzer* m_pSQLAnalyzer; //the sql analyzer used by the resultset
+ ::std::vector<sal_Int32>* m_pEvaluationKeySet;
+
OFileTable* m_pTable; // the current table
OValueRow m_aRow;
+ OValueRow m_aEvaluateRow; // contains all values of a row
::rtl::OUString m_aCursorName;