System.Data.Common.DbDataAdapter.DbDataAdapter.GetBatchedRecordsAffected C# (CSharp) Method

GetBatchedRecordsAffected() protected method

protected GetBatchedRecordsAffected ( int commandIdentifier, int &recordsAffected, Exception &error ) : bool
commandIdentifier int
recordsAffected int
error System.Exception
return bool
		protected virtual bool GetBatchedRecordsAffected (int commandIdentifier, out int recordsAffected, out Exception error)
		{
			recordsAffected = 1;
			error = null;
			return true;
		}