acceptsURL(String url)
Syntax:
boolean acceptsURL(String url) throws SQLException
Description:
Retrieves whether the driver thinks that it can open a connection to the given URL. Typically drivers will return true if they understand the sub-protocol specified in the URL and false if they do not.
For details on the URL syntax, see RDMDriver.connect()
method.
Parameters:
url | the URL of the database |
Returns:
true if this driver understands the given URL; false otherwise
Throws:
SQLException - if a database access error occurs
Reference:
For more information, reference JDBC documentation for: Driver.acceptsURL(String)