Package org.firebirdsql.gds.ng.jna
Class FbEmbeddedDatabaseFactory
- java.lang.Object
- 
- org.firebirdsql.gds.ng.jna.AbstractNativeDatabaseFactory
- 
- org.firebirdsql.gds.ng.jna.FbEmbeddedDatabaseFactory
 
 
- 
- All Implemented Interfaces:
- FbDatabaseFactory
 
 public class FbEmbeddedDatabaseFactory extends AbstractNativeDatabaseFactory Implementation ofFbDatabaseFactoryfor establishing connection using the Firebird embedded library.- Since:
- 3.0
- Author:
- Mark Rotteveel
 
- 
- 
Constructor SummaryConstructors Constructor Description FbEmbeddedDatabaseFactory()
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected FbClientLibrarycreateClientLibrary()Creates and initialize a new instance of the client library.protected <T extends IAttachProperties<T>>
 TfilterProperties(T attachProperties)Allows the database factory to perform modification of the attach properties before use.static FbEmbeddedDatabaseFactorygetInstance()- 
Methods inherited from class org.firebirdsql.gds.ng.jna.AbstractNativeDatabaseFactoryconnect, getClientLibrary, serviceConnect
 
- 
 
- 
- 
- 
Method Detail- 
filterPropertiesprotected <T extends IAttachProperties<T>> T filterProperties(T attachProperties) Description copied from class:AbstractNativeDatabaseFactoryAllows the database factory to perform modification of the attach properties before use.Implementations should be prepared to handle immutable attach properties. Implementations are strongly advised to copy the attach properties before modification and return this copy. - Overrides:
- filterPropertiesin class- AbstractNativeDatabaseFactory
- Type Parameters:
- T- Type of attach properties
- Parameters:
- attachProperties- Attach properties
- Returns:
- Filtered properties
 
 - 
getInstancepublic static FbEmbeddedDatabaseFactory getInstance() 
 - 
createClientLibraryprotected FbClientLibrary createClientLibrary() Description copied from class:AbstractNativeDatabaseFactoryCreates and initialize a new instance of the client library.Instances should not be cached (caching - if any - is the responsibility of the caller). - Specified by:
- createClientLibraryin class- AbstractNativeDatabaseFactory
- Returns:
- new client library instance
 
 
- 
 
-