summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/firebird/FDriver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/firebird/FDriver.cxx')
-rw-r--r--connectivity/source/drivers/firebird/FDriver.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/connectivity/source/drivers/firebird/FDriver.cxx b/connectivity/source/drivers/firebird/FDriver.cxx
index e55a1bcfda5f..7f7b44a1a362 100644
--- a/connectivity/source/drivers/firebird/FDriver.cxx
+++ b/connectivity/source/drivers/firebird/FDriver.cxx
@@ -147,7 +147,10 @@ sal_Bool SAL_CALL FirebirdDriver::acceptsURL( const ::rtl::OUString& url )
{
// here we have to look if we support this url format
// change the URL format to your needs, but please aware that the first on who accepts the URl wins.
- return url.startsWith("sdbc:firebird:");
+ // This could be extended to allow for external dbs using e.g. sdbc:firebird:url
+ // in addition to embedded dbs.
+// return url.startsWith("sdbc:firebird:");
+ return url.equals("sdbc:embedded:firebird");
}
// --------------------------------------------------------------------------------
Sequence< DriverPropertyInfo > SAL_CALL FirebirdDriver::getPropertyInfo( const ::rtl::OUString& url, const Sequence< PropertyValue >& info ) throw(SQLException, RuntimeException)