diff options
author | dkenny <dkenny@openoffice.org> | 2001-05-31 06:22:02 +0000 |
---|---|---|
committer | dkenny <dkenny@openoffice.org> | 2001-05-31 06:22:02 +0000 |
commit | 1db76df78974d8d37ae0ce81e5dab939e2b0f723 (patch) | |
tree | 269db32929f60d719371bedd13fdf3bf0b9e2a07 /connectivity/source/inc/mozaddressbook/MABDatabaseMetaData.hxx | |
parent | 899bf654f86f3bcc94972e1c24c31473471461fe (diff) |
Code changes to enable the use of URIs like:
sdbc:address:mozilla:
sdbc:address:ldap:
sdbc:address:outlook:
sdbc:address:outlookexp:
Darren.
Diffstat (limited to 'connectivity/source/inc/mozaddressbook/MABDatabaseMetaData.hxx')
-rw-r--r-- | connectivity/source/inc/mozaddressbook/MABDatabaseMetaData.hxx | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/connectivity/source/inc/mozaddressbook/MABDatabaseMetaData.hxx b/connectivity/source/inc/mozaddressbook/MABDatabaseMetaData.hxx index 8395195b4842..0953156b686c 100644 --- a/connectivity/source/inc/mozaddressbook/MABDatabaseMetaData.hxx +++ b/connectivity/source/inc/mozaddressbook/MABDatabaseMetaData.hxx @@ -2,9 +2,9 @@ * * $RCSfile: MABDatabaseMetaData.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: dkenny $ $Date: 2001-05-28 22:02:59 $ + * last change: $Author: dkenny $ $Date: 2001-05-31 07:22:01 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -66,25 +66,21 @@ #include "file/FDatabaseMetaData.hxx" #endif +#ifndef _CONNECTIVITY_MAB_CONNECTION_HXX_ +#include <mozaddressbook/MABConnection.hxx> +#endif + namespace connectivity { namespace mozaddressbook { - static const char * const m_pADDRESSBOOKROOTDIR = "abdirectory://"; - static sal_Int32 const m_nCOLUMN_SIZE = 256; - static sal_Int32 const m_nDECIMAL_DIGITS = 0; - static sal_Int32 const m_nNULLABLE = 1; - static sal_Int32 const m_nCHAR_OCTET_LENGTH = 65535; class OMozabDatabaseMetaData : public file::ODatabaseMetaData { private: - // static const char * const m_pADDRESSBOOKROOTDIR = "abdirectory://"; - // static sal_Int32 const m_nCOLUMN_SIZE = 256; - // static sal_Int32 const m_nDECIMAL_DIGITS = 0; - // static sal_Int32 const m_nNULLABLE = 1; - // static sal_Int32 const m_nCHAR_OCTET_LENGTH = 65535; + OMozabConnection* m_pMozConnection; + public: - OMozabDatabaseMetaData(file::OConnection* _pCon); + OMozabDatabaseMetaData(OMozabConnection* _pCon); ~OMozabDatabaseMetaData(); // XDatabaseMetaData methods. virtual sal_Bool SAL_CALL allProceduresAreCallable() |