*/
public AbstractDataSource(ManagedConnectionFactoryImpl mcf, ConnectionManager cm) {
this.mcf = mcf;
executor = new MethodExecutor();
if (cm == null) {
this.cm = new ConnectionManagerImplementation();
} else {
this.cm = cm;
conType_ = findConnectionType();
}
}