public class FBDriver extends java.lang.Object implements FirebirdDriver
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
BLOB_BUFFER_LENGTH
Deprecated.
|
static java.lang.String |
CHARSET
Deprecated.
|
static java.lang.String |
DATABASE
Deprecated.
|
static java.lang.String |
PASSWORD
Deprecated.
|
static java.lang.String |
TPB_MAPPING
Deprecated.
|
static java.lang.String |
USER
Deprecated.
|
static java.lang.String |
USER_NAME
Deprecated.
|
Constructor and Description |
---|
FBDriver() |
Modifier and Type | Method and Description |
---|---|
boolean |
acceptsURL(java.lang.String url) |
FirebirdConnection |
connect(FirebirdConnectionProperties properties)
Connect to the specified database using the specified connection
properties.
|
java.sql.Connection |
connect(java.lang.String url,
java.util.Properties info) |
int |
getMajorVersion() |
int |
getMinorVersion() |
java.util.logging.Logger |
getParentLogger() |
java.sql.DriverPropertyInfo[] |
getPropertyInfo(java.lang.String url,
java.util.Properties info) |
boolean |
jdbcCompliant() |
FirebirdConnectionProperties |
newConnectionProperties()
Create new instance of
FirebirdConnectionProperties that can
later be used in FirebirdDriver.connect(FirebirdConnectionProperties) call. |
static java.util.Map<java.lang.String,java.lang.String> |
normalizeProperties(java.lang.String jdbcUrl,
java.util.Properties connectionProperties)
Merges the properties from the JDBC URL and properties object, normalizes them to a standard name.
|
@Deprecated public static final java.lang.String CHARSET
@Deprecated public static final java.lang.String USER
@Deprecated public static final java.lang.String USER_NAME
PropertyNames.user
@Deprecated public static final java.lang.String PASSWORD
@Deprecated public static final java.lang.String DATABASE
@Deprecated public static final java.lang.String BLOB_BUFFER_LENGTH
PropertyNames.blobBufferSize
@Deprecated public static final java.lang.String TPB_MAPPING
PropertyNames.tpbMapping
public java.sql.Connection connect(java.lang.String url, java.util.Properties info) throws java.sql.SQLException
connect
in interface java.sql.Driver
java.sql.SQLException
public FirebirdConnection connect(FirebirdConnectionProperties properties) throws java.sql.SQLException
FirebirdDriver
connect
in interface FirebirdDriver
properties
- instance of FirebirdConnectionProperties
created in FirebirdDriver.newConnectionProperties()
method.java.sql.SQLException
- if an error happened while connecting to the database.public FirebirdConnectionProperties newConnectionProperties()
FirebirdDriver
FirebirdConnectionProperties
that can
later be used in FirebirdDriver.connect(FirebirdConnectionProperties)
call.newConnectionProperties
in interface FirebirdDriver
FirebirdConnectionProperties
.public boolean acceptsURL(java.lang.String url) throws java.sql.SQLException
acceptsURL
in interface java.sql.Driver
java.sql.SQLException
public java.sql.DriverPropertyInfo[] getPropertyInfo(java.lang.String url, java.util.Properties info) throws java.sql.SQLException
getPropertyInfo
in interface java.sql.Driver
java.sql.SQLException
public int getMajorVersion()
getMajorVersion
in interface java.sql.Driver
public int getMinorVersion()
getMinorVersion
in interface java.sql.Driver
public boolean jdbcCompliant()
jdbcCompliant
in interface java.sql.Driver
public java.util.logging.Logger getParentLogger() throws java.sql.SQLFeatureNotSupportedException
getParentLogger
in interface java.sql.Driver
java.sql.SQLFeatureNotSupportedException
public static java.util.Map<java.lang.String,java.lang.String> normalizeProperties(java.lang.String jdbcUrl, java.util.Properties connectionProperties) throws java.sql.SQLException
If a property with the exact same name is present in both, the property specified in the JDBC url takes
precedence. Occurrence of multiple (distinct) aliases for the same property result in a SQLException
.
The property name that is the result of normalization, is implementation specific behaviour, and might change in a future version of Jaybird. When present, the (normalized) property `"database"` will be excluded, this also might change in the future.
The behaviour of this method does not necessarily match the behaviour of Jaybird when processing properties
during connect(String, Properties)
, as this method performs additional processing that is skipped during
connect.
jdbcUrl
- JDBC UrlconnectionProperties
- Properties objectjava.sql.SQLException
- For failures to extract connection properties from jdbcUrl
(URL decoding errors), or presence
of the same property under multiple aliases.Copyright © 2001-2023 Jaybird (Firebird JDBC) team. All rights reserved.