fdo#64528 macab URL is sdbc:address:macab, not sdbc:address:macab:*

Change-Id: I1e5721815c961e14484f78f449910908ed48aeb1
This commit is contained in:
Lionel Elie Mamane
2013-05-13 14:33:47 +02:00
parent ddb579666c
commit 2c46fa1299

View File

@@ -276,7 +276,7 @@ sal_Bool SAL_CALL MacabDriver::acceptsURL( const OUString& url )
return sal_False; return sal_False;
// here we have to look whether we support this URL format // here we have to look whether we support this URL format
return url.startsWith("sdbc:address:macab:"); return url.equals("sdbc:address:macab");
} }
// -------------------------------------------------------------------------------- // --------------------------------------------------------------------------------
Sequence< DriverPropertyInfo > SAL_CALL MacabDriver::getPropertyInfo( const OUString&, const Sequence< PropertyValue >& ) throw(SQLException, RuntimeException) Sequence< DriverPropertyInfo > SAL_CALL MacabDriver::getPropertyInfo( const OUString&, const Sequence< PropertyValue >& ) throw(SQLException, RuntimeException)