public class FBDriver extends java.lang.Object implements FirebirdDriver
| Modifier and Type | Field and Description | 
|---|---|
| static java.lang.String | BLOB_BUFFER_LENGTHDeprecated. 
 | 
| static java.lang.String | CHARSETDeprecated.  | 
| static java.lang.String | DATABASEDeprecated.  | 
| static java.lang.String | PASSWORDDeprecated.  | 
| static java.lang.String | TPB_MAPPINGDeprecated. 
 | 
| static java.lang.String | USERDeprecated.  | 
| static java.lang.String | USER_NAMEDeprecated. 
 | 
| 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  FirebirdConnectionPropertiesthat can
 later be used inFirebirdDriver.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.tpbMappingpublic java.sql.Connection connect(java.lang.String url,
                                   java.util.Properties info)
                            throws java.sql.SQLException
connect in interface java.sql.Driverjava.sql.SQLExceptionpublic FirebirdConnection connect(FirebirdConnectionProperties properties) throws java.sql.SQLException
FirebirdDriverconnect in interface FirebirdDriverproperties - instance of FirebirdConnectionProperties created in FirebirdDriver.newConnectionProperties() method.java.sql.SQLException - if an error happened while connecting to the database.public FirebirdConnectionProperties newConnectionProperties()
FirebirdDriverFirebirdConnectionProperties that can
 later be used in FirebirdDriver.connect(FirebirdConnectionProperties) call.newConnectionProperties in interface FirebirdDriverFirebirdConnectionProperties.public boolean acceptsURL(java.lang.String url)
                   throws java.sql.SQLException
acceptsURL in interface java.sql.Driverjava.sql.SQLExceptionpublic java.sql.DriverPropertyInfo[] getPropertyInfo(java.lang.String url,
                                                     java.util.Properties info)
                                              throws java.sql.SQLException
getPropertyInfo in interface java.sql.Driverjava.sql.SQLExceptionpublic int getMajorVersion()
getMajorVersion in interface java.sql.Driverpublic int getMinorVersion()
getMinorVersion in interface java.sql.Driverpublic boolean jdbcCompliant()
jdbcCompliant in interface java.sql.Driverpublic java.util.logging.Logger getParentLogger()
                                         throws java.sql.SQLFeatureNotSupportedException
getParentLogger in interface java.sql.Driverjava.sql.SQLFeatureNotSupportedExceptionpublic 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.