summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/file/FStatement.hxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 01:01:37 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 01:01:37 +0000
commit67f6ac6c7d3e91ad848ca53819569740a1921590 (patch)
tree16063187f8c055b533c5ae1a6d1baed483c609ad /connectivity/source/inc/file/FStatement.hxx
parent87586e3ed1d8345a6b84840902f59e15c30416db (diff)
INTEGRATION: CWS warnings01 (1.21.30); FILE MERGED
2005/12/22 11:45:01 fs 1.21.30.2: #i57457# warning-free code 2005/11/07 14:44:08 fs 1.21.30.1: #i57457# warning-free code
Diffstat (limited to 'connectivity/source/inc/file/FStatement.hxx')
-rw-r--r--connectivity/source/inc/file/FStatement.hxx12
1 files changed, 8 insertions, 4 deletions
diff --git a/connectivity/source/inc/file/FStatement.hxx b/connectivity/source/inc/file/FStatement.hxx
index e1832f60a5a7..f6fd3cf50531 100644
--- a/connectivity/source/inc/file/FStatement.hxx
+++ b/connectivity/source/inc/file/FStatement.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: FStatement.hxx,v $
*
- * $Revision: 1.21 $
+ * $Revision: 1.22 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 07:09:18 $
+ * last change: $Author: hr $ $Date: 2006-06-20 02:01:37 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -90,6 +90,9 @@
#ifndef _COMPHELPER_BROADCASTHELPER_HXX_
#include <comphelper/broadcasthelper.hxx>
#endif
+#ifndef CONNECTIVITY_TSORTINDEX_HXX
+#include "TSortIndex.hxx"
+#endif
#define SQL_COLUMN_NOTFOUND STRING_NOTFOUND
@@ -116,7 +119,7 @@ namespace connectivity
::std::vector<sal_Int32> m_aColMapping; // pos 0 is unused so we don't have to decrement 1 everytime
::std::vector<sal_Int32> m_aParameterIndexes; // maps the parameter index to column index
::std::vector<sal_Int32> m_aOrderbyColumnNumber;
- ::std::vector<sal_Int16> m_aOrderbyAscending;
+ ::std::vector<TAscendingOrder> m_aOrderbyAscending;
::com::sun::star::sdbc::SQLWarning m_aLastWarning;
::com::sun::star::uno::WeakReference< ::com::sun::star::sdbc::XResultSet> m_xResultSet; // The last ResultSet created
@@ -150,6 +153,8 @@ namespace connectivity
sal_Int32 m_nResultSetConcurrency;
sal_Bool m_bEscapeProcessing;
+ ::cppu::OBroadcastHelper& rBHelper;
+
protected:
// initialize the column index map (mapping select columns to table columns)
void createColumnMapping();
@@ -187,7 +192,6 @@ namespace connectivity
public:
connectivity::OSQLParseNode* getParseTree() const { return m_pParseTree;}
- ::cppu::OBroadcastHelper& rBHelper;
OStatement_Base(OConnection* _pConnection );
OConnection* getOwnConnection() const { return m_pConnection;}