Interface FirebirdConnectionProperties

All Known Implementing Classes:
FBAbstractCommonDataSource, FBConnectionPoolDataSource, FBConnectionProperties, FBManagedConnectionFactory, FBSimpleDataSource, FBXADataSource

public interface FirebirdConnectionProperties
Connection properties for the Firebird connection. Main part of this interface corresponds to the Database Parameter Buffer, but also contains properties to specify default transaction parameters.
  • Method Details

    • getDatabase

      String getDatabase()
      Returns:
      path to the database including the server name and the port, if needed.
    • setDatabase

      void setDatabase(String database)
      Parameters:
      database - path to the database including the server name and the port, if needed.
    • getType

      String getType()
      Returns:
      type of the connection, for example, "PURE_JAVA", "LOCAL", "EMBEDDED", depends on the GDS implementations installed in the system.
    • setType

      void setType(String type)
      Parameters:
      type - type of the connection, for example, "PURE_JAVA", "LOCAL", "EMBEDDED", depends on the GDS implementations installed in the system.
    • getBlobBufferSize

      int getBlobBufferSize()
      Returns:
      BLOB buffer size in bytes.
    • setBlobBufferSize

      void setBlobBufferSize(int bufferSize)
      Parameters:
      bufferSize - size of the BLOB buffer in bytes.
    • getCharSet

      String getCharSet()
      Returns:
      Character set for the connection.
      See Also:
    • setCharSet

      void setCharSet(String charSet)
      Parameters:
      charSet - Character set for the connection. Similar to encoding property, but accepts Java names instead of Firebird ones.
    • getEncoding

      String getEncoding()
      Returns:
      Character encoding for the connection.
      See Also:
    • setEncoding

      void setEncoding(String encoding)
      Parameters:
      encoding - Character encoding for the connection. See Firebird documentation for more information.
    • getRoleName

      String getRoleName()
      Returns:
      SQL role to use.
    • setRoleName

      void setRoleName(String roleName)
      Parameters:
      roleName - SQL role to use.
    • getSqlDialect

      String getSqlDialect()
      Returns:
      SQL dialect of the client.
    • setSqlDialect

      void setSqlDialect(String sqlDialect)
      Parameters:
      sqlDialect - SQL dialect of the client.
    • isUseStreamBlobs

      boolean isUseStreamBlobs()
      Returns:
      true if stream blobs should be created, otherwise false.
    • setUseStreamBlobs

      void setUseStreamBlobs(boolean useStreamBlobs)
      Parameters:
      useStreamBlobs - true if stream blobs should be created, otherwise false.
    • isUseStandardUdf

      boolean isUseStandardUdf()
      Returns:
      true if driver should assume that standard UDF are installed.
    • setUseStandardUdf

      void setUseStandardUdf(boolean useStandardUdf)
      Parameters:
      useStandardUdf - true if driver should assume that standard UDF are installed.
    • getSocketBufferSize

      int getSocketBufferSize()
      Returns:
      socket buffer size in bytes, or -1 is not specified.
    • setSocketBufferSize

      void setSocketBufferSize(int socketBufferSize)
      Parameters:
      socketBufferSize - socket buffer size in bytes.
    • isTimestampUsesLocalTimezone

      boolean isTimestampUsesLocalTimezone()
      Returns:
      true if the Jaybird 1.0 handling of the calendar in corresponding setters. This is also compatible with MySQL calendar treatment.
    • setTimestampUsesLocalTimezone

      void setTimestampUsesLocalTimezone(boolean timestampUsesLocalTimezone)
      Parameters:
      timestampUsesLocalTimezone - true if the Jaybird 1.0 handling of the calendar in corresponding setters. This is also compatible with MySQL calendar treatment.
    • getUserName

      String getUserName()
      Returns:
      name of the user that will be used when connecting to the database.
    • setUserName

      void setUserName(String userName)
      Parameters:
      userName - name of the user that will be used when connecting to the database.
    • getPassword

      String getPassword()
      Returns:
      password corresponding to the specified user name.
    • setPassword

      void setPassword(String password)
      Parameters:
      password - password corresponding to the specified user name.
    • getBuffersNumber

      int getBuffersNumber()
      Returns:
      number of cache buffers that should be allocated for this connection, should be specified for ClassicServer instances, SuperServer has a server-wide configuration parameter.
    • setBuffersNumber

      void setBuffersNumber(int buffersNumber)
      Parameters:
      buffersNumber - number of cache buffers that should be allocated for this connection, should be specified for ClassicServer instances, SuperServer has a server-wide configuration parameter.
    • getNonStandardProperty

      String getNonStandardProperty(String key)
      Get the property that does not have corresponding getter method by its name.
      Parameters:
      key - name of the property to get.
      Returns:
      value of the property.
    • setNonStandardProperty

      void setNonStandardProperty(String key, String value)
      Set the property that does not have corresponding setter method.
      Parameters:
      key - name of the property to set.
      value - value of the property.
    • setNonStandardProperty

      void setNonStandardProperty(String propertyMapping)
      Set the property that does not have corresponding setter method.
      Parameters:
      propertyMapping - parameter value in the ?propertyName[=propertyValue]? form, this allows setting non-standard parameters using configuration files.
    • getDatabaseParameterBuffer

      DatabaseParameterBuffer getDatabaseParameterBuffer() throws SQLException
      Get the database parameter buffer corresponding to the current connection request information.
      Returns:
      instance of DatabaseParameterBuffer.
      Throws:
      SQLException - if database parameter buffer cannot be created.
    • getTpbMapping

      String getTpbMapping()
      Get the used TPB mapping.
      Returns:
      path to the TPB mapping.
      See Also:
    • setTpbMapping

      void setTpbMapping(String tpbMapping)
      Set path to the properties file with the TPB mapping. The path begins with the protocol specification followed by the path to the resource. A special protocol "res:" should be used to specify resource in the classpath.

      For the compatibility reasons, if no protocol is specified, classpath is used by default.

      Properties file contains a mapping between the transaction isolation level (name of the constant in the Connection interface and a comma-separated list of TPB parameters.

      Parameters:
      tpbMapping - path to the properties file.
    • getDefaultTransactionIsolation

      int getDefaultTransactionIsolation()
      Get the default transaction isolation level. This is the transaction isolation level for the newly created connections.
      Returns:
      default transaction isolation level.
    • setDefaultTransactionIsolation

      void setDefaultTransactionIsolation(int defaultIsolationLevel)
      Set the default transaction isolation level.
      Parameters:
      defaultIsolationLevel - default transaction isolation level.
    • getDefaultIsolation

      String getDefaultIsolation()
      Get the default transaction isolation level as string. This method is complementary to the getDefaultTransactionIsolation(), however it takes a string as parameter instead of a numeric constant.
      Returns:
      default transaction isolation as string.
      See Also:
    • setDefaultIsolation

      void setDefaultIsolation(String isolation)
      Set the default transaction isolation level as string. This method is complementary to the setDefaultTransactionIsolation(int), however it takes a string as parameter instead of a numeric constant.

      Following strings are allowed:

      • "TRANSACTION_READ_COMMITTED" for a READ COMMITTED isolation level.
      • "TRANSACTION_REPEATABLE_READ" for a REPEATABLE READ isolation level.
      • "TRANSACTION_SERIALIZABLE" for a SERIALIZABLE isolation level.
      Parameters:
      isolation - string constant representing a default isolation level.
    • getTransactionParameters

      TransactionParameterBuffer getTransactionParameters(int isolation)
      Get the transaction parameter buffer corresponding to the current connection request information.
      Parameters:
      isolation - transaction isolation level for which TPB should be returned.
      Returns:
      instance of TransactionParameterBuffer.
    • setTransactionParameters

      void setTransactionParameters(int isolation, TransactionParameterBuffer tpb)
      Set transaction parameters for the specified transaction isolation level. The specified TPB is used as a default mapping for the specified isolation level.
      Parameters:
      isolation - transaction isolation level.
      tpb - instance of TransactionParameterBuffer containing transaction parameters.
    • isDefaultResultSetHoldable

      boolean isDefaultResultSetHoldable()
      Get the default ResultSet holdability.
      Returns:
      true when ResultSets are holdable by default, false not holdable.
    • setDefaultResultSetHoldable

      void setDefaultResultSetHoldable(boolean isHoldable)
      Sets the default ResultSet holdability.
      Parameters:
      isHoldable - true when ResultSets are holdable by default, false not holdable.
    • getSoTimeout

      int getSoTimeout()
      Get the current Socket blocking timeout (SoTimeout).
      Returns:
      The socket blocking timeout in milliseconds (0 is 'infinite')
    • setSoTimeout

      void setSoTimeout(int soTimeout)
      Set the Socket blocking timeout (SoTimeout).
      Parameters:
      soTimeout - Timeout in milliseconds (0 is 'infinite')
    • getConnectTimeout

      int getConnectTimeout()
      Get the current connect timeout.
      Returns:
      Connect timeout in seconds (0 is 'infinite', or better: OS specific timeout)
    • setConnectTimeout

      void setConnectTimeout(int connectTimeout)
      Set the connect timeout.
      Parameters:
      connectTimeout - Connect timeout in seconds (0 is 'infinite', or better: OS specific timeout)
    • isUseFirebirdAutocommit

      boolean isUseFirebirdAutocommit()
      Get whether to use Firebird autocommit (experimental).
      Returns:
      true use Firebird autocommit
    • setUseFirebirdAutocommit

      void setUseFirebirdAutocommit(boolean useFirebirdAutocommit)
      Set whether to use Firebird autocommit (experimental).
      Parameters:
      useFirebirdAutocommit - true Use Firebird autocommit
    • getWireCrypt

      String getWireCrypt()
      Get the wire encryption level value.
      Returns:
      Wire encryption level (null implies DEFAULT)
      Since:
      4.0
    • setWireCrypt

      void setWireCrypt(String wireCrypt)
      Sets the wire encryption level.

      Values are defined by WireCrypt, values are handled case insensitive. Invalid values are accepted, but will cause an error when a connection is established.

      Parameters:
      wireCrypt - Wire encryption level
      Since:
      4.0
    • getDbCryptConfig

      String getDbCryptConfig()
      Get the database encryption plugin configuration.
      Returns:
      Database encryption plugin configuration, meaning plugin specific
      Since:
      3.0.4
    • setDbCryptConfig

      void setDbCryptConfig(String dbCryptConfig)
      Sets the database encryption plugin configuration.
      Parameters:
      dbCryptConfig - Database encryption plugin configuration, meaning plugin specific
      Since:
      3.0.4
    • getAuthPlugins

      String getAuthPlugins()
      Get the list of authentication plugins to try.
      Returns:
      comma-separated list of authentication plugins, or null for driver default
      Since:
      4.0
    • setAuthPlugins

      void setAuthPlugins(String authPlugins)
      Sets the authentication plugins to try.

      Invalid names are skipped during authentication.

      Parameters:
      authPlugins - comma-separated list of authentication plugins, or null for driver default
      Since:
      4.0
    • getGeneratedKeysEnabled

      String getGeneratedKeysEnabled()
      Get the generatedKeysEnabled configuration.
      Returns:
      configuration value for generatedKeysEnabled, or null for driver default
      Since:
      4.0
    • setGeneratedKeysEnabled

      void setGeneratedKeysEnabled(String generatedKeysEnabled)
      Sets the generatedKeysEnabled configuration.
      Parameters:
      generatedKeysEnabled - Generated keys support configuration: default (or null/empty), disabled, ignored, or a list of statement types to enable (possible values: insert, update, delete, update_or_insert, merge)
    • getDataTypeBind

      String getDataTypeBind()
      Get the dataTypeBind configuration.
      Returns:
      configuration value for dataTypeBind, or null for driver default
      Since:
      4.0
    • setDataTypeBind

      void setDataTypeBind(String dataTypeBind)
      Sets the dataTypeBind configuration.

      If the value is explicitly set to a non-null value and the connected server is Firebird 4 or higher, this will configure the data type binding with the specified values using isc_dpb_set_bind, which is equivalent to executing SET BIND statements with the values.

      See also Firebird documentation for SET BIND.

      Parameters:
      dataTypeBind - Firebird 4+ data type bind configuration, a semicolon-separated list of <from-type> TO <to-type>
      Since:
      4.0
    • getSessionTimeZone

      String getSessionTimeZone()
      Get the sessionTimeZone.
      Returns:
      value for sessionTimeZone, or null for driver default (JVM default time zone)
      Since:
      4.0
    • setSessionTimeZone

      void setSessionTimeZone(String sessionTimeZone)
      Sets the sessionTimeZone.
      Parameters:
      sessionTimeZone - Firebird 4+ session time zone name (we strongly suggest to use Java compatible names only), use "server" to use server default time zone (note: conversion will use JVM default time zone)
      Since:
      4.0
    • isIgnoreProcedureType

      boolean isIgnoreProcedureType()
      Get the value for ignoreProcedureType.
      Returns:
      value for ignoreProcedureType
      Since:
      3.0.6
    • setIgnoreProcedureType

      void setIgnoreProcedureType(boolean ignoreProcedureType)
      Sets the value ignoreProcedureType.

      When set to true, the CallableStatement implementation in Jaybird will ignore metadata information about the stored procedure type and default to using EXECUTE PROCEDURE, unless the type is explicitly set using FirebirdCallableStatement.setSelectableProcedure(boolean). This can be useful in situations where a stored procedure is selectable, but tooling or code expects an executable stored procedure.

      Parameters:
      ignoreProcedureType - true Ignore procedure type
      Since:
      3.0.6
    • isWireCompression

      boolean isWireCompression()
      Get if wire compression should be enabled.

      Wire compression requires Firebird 3 or higher, and the server must have the zlib library. If compression cannot be negotiated, the connection will be made without wire compression.

      This property will be ignored for native connections. For native connections, the configuration in firebird.conf read by the client library will be used.

      Returns:
      true wire compression enabled
      Since:
      4.0
    • setWireCompression

      void setWireCompression(boolean wireCompression)
      Sets if the connection should try to enable wire compression.
      Parameters:
      wireCompression - true enable wire compression, false disable wire compression (the default)
      Since:
      4.0
      See Also: