Gå til:/system/console/configMgr
Åbn:JDBC Connections Pool-konfigurationen
Indtast alle standard JDBC-konfigurationselementer (brugernavn, adgangskode, driver, JDBC URI)
Indtast et datakildenavn (omtalt nedenfor som yourDataSourceName)
I din JSP eller Servlet:
<%@ page import="com.day.commons.datasource.poolservice.DataSourcePool" %>
<%@ page import="javax.sql.DataSource" %>
DataSourcePool dbService = sling.getService(DataSourcePool.class);
DataSource ds = (DataSource) dbService.getDataSource("yourDataSourceName");
if(ds != null) {
try {
%><sql:query var="result" sql="SELECT now()" dataSource="<%=ds%>" /><%
} catch (Exception e) { }
}