diff options
author | Ocke Janssen <oj@openoffice.org> | 2000-10-24 15:34:43 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2000-10-24 15:34:43 +0000 |
commit | 444c5cbdeb11577f265f256d616c921c20246e99 (patch) | |
tree | 8e057c49a4a2d97a98ea22481bd83f52f70a0a86 /connectivity/source/drivers/odbc | |
parent | 7ca8b14889621c6ad5bf3f654bfa51476685ce7c (diff) |
make strings unique for lib's
Diffstat (limited to 'connectivity/source/drivers/odbc')
4 files changed, 25 insertions, 11 deletions
diff --git a/connectivity/source/drivers/odbc/OConnection.cxx b/connectivity/source/drivers/odbc/OConnection.cxx index 924c6f8ef483..f91bd5359a40 100644 --- a/connectivity/source/drivers/odbc/OConnection.cxx +++ b/connectivity/source/drivers/odbc/OConnection.cxx @@ -2,9 +2,9 @@ * * $RCSfile: OConnection.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: fs $ $Date: 2000-10-06 14:50:41 $ + * last change: $Author: oj $ $Date: 2000-10-24 16:27:55 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -96,6 +96,7 @@ #endif using namespace connectivity::odbc; +using namespace connectivity::dbtools; //------------------------------------------------------------------------------ using namespace com::sun::star::uno; diff --git a/connectivity/source/drivers/odbc/OPreparedStatement.cxx b/connectivity/source/drivers/odbc/OPreparedStatement.cxx index e1d7c655c074..caad4af8a778 100644 --- a/connectivity/source/drivers/odbc/OPreparedStatement.cxx +++ b/connectivity/source/drivers/odbc/OPreparedStatement.cxx @@ -2,9 +2,9 @@ * * $RCSfile: OPreparedStatement.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: fs $ $Date: 2000-10-11 10:46:17 $ + * last change: $Author: oj $ $Date: 2000-10-24 16:27:55 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -76,6 +76,7 @@ #ifndef _CONNECTIVITY_ODBC_ORESULTSETMETADATA_HXX_ #include "odbc/OResultSetMetaData.hxx" #endif +#define CONNECTIVITY_PROPERTY_NAME_SPACE odbc #ifndef _CONNECTIVITY_PROPERTYIDS_HXX_ #include "propertyids.hxx" #endif diff --git a/connectivity/source/drivers/odbc/OResultSet.cxx b/connectivity/source/drivers/odbc/OResultSet.cxx index c47f9e59ed69..c7e6769731fe 100644 --- a/connectivity/source/drivers/odbc/OResultSet.cxx +++ b/connectivity/source/drivers/odbc/OResultSet.cxx @@ -2,9 +2,9 @@ * * $RCSfile: OResultSet.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: fs $ $Date: 2000-10-11 10:46:17 $ + * last change: $Author: oj $ $Date: 2000-10-24 16:27:55 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -61,6 +61,7 @@ #ifndef _CONNECTIVITY_ODBC_ORESULTSET_HXX_ #include "odbc/OResultSet.hxx" #endif +#define CONNECTIVITY_PROPERTY_NAME_SPACE odbc #ifndef _CONNECTIVITY_PROPERTYIDS_HXX_ #include "propertyids.hxx" #endif @@ -94,9 +95,6 @@ #ifndef _CPPUHELPER_EXTRACT_HXX_ #include <cppuhelper/extract.hxx> #endif -//#ifndef _CONNECTIVITY_OTOOLS_HXX_ -//#include "odbc/OTools.hxx" -//#endif using namespace connectivity::odbc; using namespace cppu; diff --git a/connectivity/source/drivers/odbc/OStatement.cxx b/connectivity/source/drivers/odbc/OStatement.cxx index d814396bdaf9..2ae4d502d1b8 100644 --- a/connectivity/source/drivers/odbc/OStatement.cxx +++ b/connectivity/source/drivers/odbc/OStatement.cxx @@ -2,9 +2,9 @@ * * $RCSfile: OStatement.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: oj $ $Date: 2000-10-17 08:52:52 $ + * last change: $Author: oj $ $Date: 2000-10-24 16:27:55 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -70,6 +70,7 @@ #ifndef _CONNECTIVITY_ODBC_ORESULTSET_HXX_ #include "odbc/OResultSet.hxx" #endif +#define CONNECTIVITY_PROPERTY_NAME_SPACE odbc #ifndef _CONNECTIVITY_PROPERTYIDS_HXX_ #include "propertyids.hxx" #endif @@ -119,6 +120,19 @@ } #endif +// define the properties of this lib +// this file includes the properties for this dll +namespace connectivity +{ + namespace odbc + { +#ifndef CONNECTIVITY_USTRINGDESCRIPTION_IMPL_HXX +#include "UStringDescription_Impl.hxx" +#endif + } +} + + using namespace connectivity::odbc; //------------------------------------------------------------------------------ using namespace com::sun::star::uno; |