System.Data.OleDb.OleDbCommand.NextRefCursor C# (CSharp) 메소드

NextRefCursor() 개인적인 메소드

private NextRefCursor ( ) : bool
리턴 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;
		}