* com.odb.core.dao.ODBDAO#getAllDataSourceByPublisherID(java.lang.String)
*/
public ArrayList<DataSourceInfo> getAllDataSourceByPublisherID(String pubID) throws SQLException {
String sql = "SELECT * FROM ODB_DATASOURCE_INFO WHERE PUBLISHER_ID=?";
ArrayList<DataSourceInfo> pubDSList = (ArrayList<DataSourceInfo>) jdbcTemp.getJdbcOperations().query(sql, new Object[] { pubID },
new DataSourceInfoRowMapper());
log.debug("ArrayList<DataSourceInfo>" + pubDSList);
return pubDSList;
}