System.Data.OleDb.OleDbCommand.NextRefCursor C# (CSharp) Method

NextRefCursor() private method

private NextRefCursor ( ) : bool
return bool
		private bool NextRefCursor()
		{
			_currentRefCursor = null;
			// FIXME : should we count all parameters or only out ones?
			for (_currentParameterIndex++;InternalParameters.Count > _currentParameterIndex;_currentParameterIndex++) {
				if (((OleDbParameter)InternalParameters[_currentParameterIndex]).IsOracleRefCursor) {
					return true;						
				}
			}
			return false;
		}