Accessing Connection object without ServiceFactory
you can access a Connection object with :
theServiceFactory = createObject('java','coldfusion.server.ServiceFactory');
//Creating the connection object simply by passing the DSN name
con = theServiceFactory.getDataSourceService().getDataSource('datasourcename').getConnection();
My server admin doesnt want me to use the ServiceFactory. What are alternative methods of getting the Connection object?
PS I need to access the Connection object to perform an Oracle Batch Insert.
