3 writes to flags
System.Data.OleDb (3)
OleDbDataReader.cs (3)
538info.flags = dbColumnInfo.dwFlags; 2066info.flags &= ~ODB.DBCOLUMNFLAGS_ISNULLABLE; 2340info.flags = unchecked((int)columnflags.columnBinding.Value_UI4());
9 references to flags
System.Data.OleDb (9)
OleDbDataReader.cs (9)
399newRow[isLong] = OleDbDataReader.IsLong(info.flags); 402newRow[allowDBNull] = OleDbDataReader.AllowDBNull(info.flags); 406newRow[allowDBNull] = OleDbDataReader.AllowDBNullMaybeNull(info.flags); 408newRow[isReadOnly] = OleDbDataReader.IsReadOnly(info.flags); 409newRow[isRowVersion] = OleDbDataReader.IsRowVersion(info.flags); 2342bool islong = OleDbDataReader.IsLong(info.flags); 2343bool isfixed = OleDbDataReader.IsFixed(info.flags); 2474else if (OleDbDataReader.DoColumnDropFilter(info.flags)) 2479Debug.WriteLine($"Filtered Column: DBCOLUMN_FLAGS={info.flags:X8} DBCOLUMN_NAME={info.columnName}");