*
* @param resourceInfo the jndi name of the resource
* @return DataSource representing the resource.
*/
public Object lookupDataSourceInDAS(ResourceInfo resourceInfo) throws ConnectorRuntimeException {
JdbcDataSource myDS = new JdbcDataSource();
myDS.setResourceInfo(resourceInfo);
return myDS;
}