summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/file/FTable.hxx
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2000-11-16 09:47:23 +0000
committerOcke Janssen <oj@openoffice.org>2000-11-16 09:47:23 +0000
commitc8aecb0b651c4005667bd37a0c6de68a40332569 (patch)
treeab302c77cf3fdcf378f28ead7c23067ea9896ab8 /connectivity/source/inc/file/FTable.hxx
parent2ecb5e5f352ea6bc1ce11bc4e9b36ed80709bc42 (diff)
#80273# use of ucbstreamhelper
Diffstat (limited to 'connectivity/source/inc/file/FTable.hxx')
-rw-r--r--connectivity/source/inc/file/FTable.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/inc/file/FTable.hxx b/connectivity/source/inc/file/FTable.hxx
index 102df462ecbf..82b0fe9e1700 100644
--- a/connectivity/source/inc/file/FTable.hxx
+++ b/connectivity/source/inc/file/FTable.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: FTable.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: oj $ $Date: 2000-11-03 13:49:39 $
+ * last change: $Author: oj $ $Date: 2000-11-16 10:45:43 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -92,7 +92,7 @@ namespace connectivity
protected:
::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDatabaseMetaData > m_xMetaData;
OConnection* m_pConnection;
- SvFileStream m_aFileStream;
+ SvStream* m_pFileStream;
::vos::ORef<OSQLColumns> m_aColumns;
sal_uInt8* m_pBuffer;
sal_uInt16 m_nBufferSize; // Groesse des ReadBuffer, wenn pBuffer != NULL
@@ -154,7 +154,7 @@ namespace connectivity
::rtl::OUString SAL_CALL getName() { return m_Name; }
::rtl::OUString getSchema() { return m_SchemaName; }
- sal_Bool isReadOnly() const { return m_aFileStream.IsOpen() && (m_aFileStream.GetStreamMode() & STREAM_READWRITE) != STREAM_READWRITE; }
+ sal_Bool isReadOnly() const { return m_pFileStream && (m_pFileStream->GetStreamMode() & STREAM_READWRITE) != STREAM_READWRITE; }
// com::sun::star::lang::XUnoTunnel
virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw(::com::sun::star::uno::RuntimeException);
static ::com::sun::star::uno::Sequence< sal_Int8 > getUnoTunnelImplementationId();