summaryrefslogtreecommitdiff
path: root/dbaccess/source/core/inc/table.hxx
diff options
context:
space:
mode:
authorFrank Schönheit <fs@openoffice.org>2001-08-30 06:53:40 +0000
committerFrank Schönheit <fs@openoffice.org>2001-08-30 06:53:40 +0000
commit953ec2c45682778c5bc27e8284f70a64e5c27b9f (patch)
treeb2e9bb8fcabee6117ba324615f7809df2ff2b307 /dbaccess/source/core/inc/table.hxx
parent6466bdef3993932b6934a98a594543f760bcfdfb (diff)
preparations for #90109# (need to know an XNumberFormatsSupplier
Diffstat (limited to 'dbaccess/source/core/inc/table.hxx')
-rw-r--r--dbaccess/source/core/inc/table.hxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/dbaccess/source/core/inc/table.hxx b/dbaccess/source/core/inc/table.hxx
index e0de5e514291..5470b9918aa6 100644
--- a/dbaccess/source/core/inc/table.hxx
+++ b/dbaccess/source/core/inc/table.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: table.hxx,v $
*
- * $Revision: 1.17 $
+ * $Revision: 1.18 $
*
- * last change: $Author: fs $ $Date: 2001-06-18 11:37:38 $
+ * last change: $Author: fs $ $Date: 2001-08-30 07:53:40 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -130,6 +130,7 @@ namespace dbaccess
,public IColumnFactory
{
protected:
+ ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection > m_xConnection;
::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDatabaseMetaData > m_xMetaData;
::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess > m_xDriverColumns;
@@ -159,12 +160,12 @@ namespace dbaccess
@param _rDesc the description of the table, as supplied by the driver
*/
ODBTable(const ::utl::OConfigurationNode& _rTableConfig,
- const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDatabaseMetaData >& _rxConn,
+ const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection >& _rxConn,
const ::rtl::OUString& _rCatalog, const ::rtl::OUString& _rSchema, const ::rtl::OUString& _rName,
const ::rtl::OUString& _rType, const ::rtl::OUString& _rDesc)
throw(::com::sun::star::sdbc::SQLException);
- ODBTable(const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDatabaseMetaData >& _rxConn)
+ ODBTable(const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection >& _rxConn)
throw(::com::sun::star::sdbc::SQLException);
virtual ~ODBTable();