Lines Matching refs:xDriver
117 Reference< XDriver > xDriver; in getConnectionWithInfo() local
120 if(isPoolingEnabledByUrl(_rURL,xDriver,sImplName,xDriverNode) && xDriver.is()) in getConnectionWithInfo()
122 OConnectionPool* pConnectionPool = getConnectionPool(sImplName,xDriver,xDriverNode); in getConnectionWithInfo()
127 else if(xDriver.is()) in getConnectionWithInfo()
128 xConnection = xDriver->connect(_rURL,_rInfo); in getConnectionWithInfo()
194 Reference< XDriver > xDriver; in getDriverByURL() local
197 if(isPoolingEnabledByUrl(_rURL,xDriver,sImplName,xDriverNode)) in getDriverByURL()
209 if (xExistentProxy.is() && (aLookup->first.get() == xDriver.get())) in getDriverByURL()
215 xDriver = xExistentProxy; in getDriverByURL()
222 … Reference< XAggregation > xDriverProxy = m_xProxyFactory->createProxy(xDriver.get()); in getDriverByURL()
225 OConnectionPool* pConnectionPool = getConnectionPool(sImplName,xDriver,xDriverNode); in getDriverByURL()
226 xDriver = new ODriverWrapper(xDriverProxy, pConnectionPool); in getDriverByURL()
233 return xDriver; in getDriverByURL()