Add a configuration for the JDBC Connections Pool service that uses the JDBC driver to create data source objects. Your application code uses this service to obtain the object and connect to the database.
JDBC Connections Pool (com.day.commons.datasource.jdbcpool.JdbcPoolService) is a factory service. If you require connections that use different properties, for example read-only or read/write access, create multiple configurations.
When working with CQ there are several methods of managing the configuration settings for such services; see Configuring OSGi for full details.
The following properties are available to configure a pooled connection service. The property names are listed as they appear in the Web Console. The corresponding name for a sling:OsgiConfig node appears in parentheses. Example values are shown for an HSQLDB server and a database that has an alias of mydb:
- JDBC Driver Class (jdbc.driver.class): The Java class to use that implements the java.sql.Driver interface, for example org.hsqldb.jdbc.JDBCDriver. The data type is String.
- JDBC Connection URI (jdbc.connection.uri): The URL of the database to use to create the connection, for example jdbc:hsqldb:hsql//10.36.79.223:9001/mydb. The format of the URL must be valid for use with the getConnection method of the java.sql.DriverManager class. The data type is String.
- Username (jdbc.username): The user name to use to authenticate with the database server. The data type is String.
- Password (jdbc.password): The password to use for authentication of the user. The data type is String.
- Validation Query (jdbc.validation.query): The SQL statement to use to verify that the connection is successful, for example select 1 from INFORMATION_SCHEMA.SYSTEM_USERS. The data type is String.
- Readonly By Default (default.readonly): Select this option when you want the connection to provide read-only access. The data type is Boolean.
- Autocommit By Default (default.autocommit): Select this option to create separate transactions for each SQL command that is sent to the database, and each transaction is automatically committed. Do not select this option when you are committing transactions explicitly in your code. The data type is Boolean.
- Pool Size (pool.size): The number of simultaneous connections to be made available to the database. The data type is Long.
- Pool wait (pool.max.wait.msec): The amount of time before a connection request times out. The data type is Long.
- Datasource Name (datasource.name): The name of this data source. The data type is String.
- Additional Service Properties (datasource.svc.properties): A set of name/value pairs that you want to append to the connection URL. The data type is String[].
The JDBC Connections Pool service is a factory. Therefore, if you use a sling:OsgiConfig node to configure the connection service, the name of the node must include the factory service PID followed by -alias. The alias that you use must be unique for all configuration nodess for that PID. An example node name is com.day.commons.datasource.jdbcpool.JdbcPoolService-myhsqldbpool.
After two days, I am still stuck on step 1. How to configure a connection and add my mysql/sql drivers to CQ5? I am a decent at Java (not an expert), have not used Maven and it seems there are implied steps here that I am missing.
A more step by step approach would have been much easier.
This page does require that you have some background knowledge of OSGi principles and Maven.
The mysql driver JAR is an OSGi bundle, so you can deploy it to CQ (i.e. no need to bundle it). Use the Bundles tab of the web console (http://localhost:4502/system/console/bundles) to deploy -- click the Install/Update button at the top.
HTH
scott
I found this site helpful in how to create an OSGI Bundle and add it to the webconsole. Maybe you want to leave it in the comments section or maybe you have a similar page that can be referenced from this page?
http://cq-ops.tumblr.com/post/21893960212/how-to-turn-a-jdbc-driver-jar-into-an-osgi-bundle-jar
Found a thread that says this page is out-of-date
http://forums.adobe.com/message/4725061
Creating a connection to a database should not be so complicated.
scott
Note: Customers with DayCare user accounts need to create a new account for use on day.com.