Package org.postgresql.osgi
Class PGDataSourceFactory
java.lang.Object
org.postgresql.osgi.PGDataSourceFactory
- All Implemented Interfaces:
org.osgi.service.jdbc.DataSourceFactory
This factory service is designed to be used in OSGi Enterprise environments to create and
configure JDBC data-sources.
-
Field Summary
Fields inherited from interface org.osgi.service.jdbc.DataSourceFactory
JDBC_DATABASE_NAME, JDBC_DATASOURCE_NAME, JDBC_DESCRIPTION, JDBC_INITIAL_POOL_SIZE, JDBC_MAX_IDLE_TIME, JDBC_MAX_POOL_SIZE, JDBC_MAX_STATEMENTS, JDBC_MIN_POOL_SIZE, JDBC_NETWORK_PROTOCOL, JDBC_PASSWORD, JDBC_PORT_NUMBER, JDBC_PROPERTY_CYCLE, JDBC_ROLE_NAME, JDBC_SERVER_NAME, JDBC_URL, JDBC_USER, OSGI_JDBC_DRIVER_CLASS, OSGI_JDBC_DRIVER_NAME, OSGI_JDBC_DRIVER_VERSION
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncreateDataSource
(Properties props) Will create and return either aSimpleDataSource
or aPoolingDataSource
depending on the presence in the supplied properties of any pool-related property (eg.:JDBC_INITIAL_POOL_SIZE
orJDBC_MAX_POOL_SIZE
).createDriver
(Properties props) createXADataSource
(Properties props)
-
Constructor Details
-
PGDataSourceFactory
public PGDataSourceFactory()
-
-
Method Details
-
createDriver
- Specified by:
createDriver
in interfaceorg.osgi.service.jdbc.DataSourceFactory
- Throws:
SQLException
-
createDataSource
Will create and return either aSimpleDataSource
or aPoolingDataSource
depending on the presence in the supplied properties of any pool-related property (eg.:JDBC_INITIAL_POOL_SIZE
orJDBC_MAX_POOL_SIZE
).- Specified by:
createDataSource
in interfaceorg.osgi.service.jdbc.DataSourceFactory
- Throws:
SQLException
-
createConnectionPoolDataSource
public ConnectionPoolDataSource createConnectionPoolDataSource(Properties props) throws SQLException - Specified by:
createConnectionPoolDataSource
in interfaceorg.osgi.service.jdbc.DataSourceFactory
- Throws:
SQLException
-
createXADataSource
- Specified by:
createXADataSource
in interfaceorg.osgi.service.jdbc.DataSourceFactory
- Throws:
SQLException
-