summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Schönheit <fs@openoffice.org>2001-05-30 05:38:50 +0000
committerFrank Schönheit <fs@openoffice.org>2001-05-30 05:38:50 +0000
commit67f908b8862f38d4aa803b959d5e362a8232006b (patch)
treee3467e6d098121d26442cab2dbf63156b2103d6c
parenta099220ded8f01bebd835f03c1feecf9c401b5c1 (diff)
#87531# changed the implementation name of the JDBC driver
-rw-r--r--connectivity/source/drivers/jdbc/JDriver.cxx8
-rw-r--r--connectivity/source/drivers/jdbc/jdbc.xml2
2 files changed, 6 insertions, 4 deletions
diff --git a/connectivity/source/drivers/jdbc/JDriver.cxx b/connectivity/source/drivers/jdbc/JDriver.cxx
index e98c33912f76..d4e742a9d2bb 100644
--- a/connectivity/source/drivers/jdbc/JDriver.cxx
+++ b/connectivity/source/drivers/jdbc/JDriver.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: JDriver.cxx,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: fs $ $Date: 2001-05-29 08:59:27 $
+ * last change: $Author: fs $ $Date: 2001-05-30 06:38:50 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -109,7 +109,9 @@ java_sql_Driver::~java_sql_Driver()
//------------------------------------------------------------------------------
rtl::OUString java_sql_Driver::getImplementationName_Static( ) throw(RuntimeException)
{
- return ::rtl::OUString::createFromAscii("com.sun.star.sdbc.JDriver");
+ return ::rtl::OUString::createFromAscii("com.sun.star.comp.sdbc.JDBCDriver");
+ // this name is referenced in the configuration and in the jdbc.xml
+ // Please take care when changing it.
}
//------------------------------------------------------------------------------
Sequence< ::rtl::OUString > java_sql_Driver::getSupportedServiceNames_Static( ) throw (RuntimeException)
diff --git a/connectivity/source/drivers/jdbc/jdbc.xml b/connectivity/source/drivers/jdbc/jdbc.xml
index d5be68af2822..0324918d3e2f 100644
--- a/connectivity/source/drivers/jdbc/jdbc.xml
+++ b/connectivity/source/drivers/jdbc/jdbc.xml
@@ -4,7 +4,7 @@
<module-name> jdbc </module-name>
<component-description>
<Author>Ocke Janssen</Author>
- <Name> com.sun.star.sdbc.JDBCDriver </Name>
+ <Name>com.sun.star.comp.sdbc.JDBCDriver</Name>
<Description>
This is the implementation of the sdbc-jdbc bridge.
</Description>