Implemented interface member:
property
FieldCount
System.Data.IDataRecord.FieldCount
12 references to FieldCount
System.Data (12)
fx\src\data\Microsoft\SqlServer\Server\SqlDataRecord.cs (8)
102int copyLength = ( values.Length < FieldCount ) ? values.Length : FieldCount; 113string[] names = new string [ FieldCount ]; 265int copyLength = (values.Length < FieldCount) ? values.Length : FieldCount; 363int copyLength = ( values.Length > FieldCount ) ? FieldCount : values.Length; 670if ( 0 > ordinal || FieldCount <= ordinal ) {
fx\src\data\Microsoft\SqlServer\Server\sqlpipe.cs (1)
174if (0 != record.FieldCount) { // SQLBUDT #340564 -- don't send empty records.
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (2)
3749if (record.FieldCount != mdFields.Length) { 3753for(int i=0; i<record.FieldCount; i++) {
fx\src\data\System\Data\SqlClient\SqlParameter.cs (1)
1160int fieldCount = firstRecord.FieldCount;