1 write to dataType
System.Data (1)
fx\src\data\System\Data\OleDb\OLEDB_Enum.cs (1)
232this.dataType = dataType;
10 references to dataType
System.Data (10)
fx\src\data\System\Data\OleDb\ColumnBinding.cs (1)
119get { return NativeDBType.FromDBType(DbType, false, false).dataType; }
fx\src\data\System\Data\OleDb\OleDbDataReader.cs (2)
373newRow[dataType] = info.type.dataType; 924return _metadata[index].type.dataType;
fx\src\data\System\Data\OleDb\OleDbMetaDataFactory.cs (1)
407newRow[clrType] = nativeType.dataType.FullName;
fx\src\data\System\Data\OleDb\OleDbParameter.cs (6)
315throw ADP.UninitializedParameterSize(index, _coerceMetaType.dataType); 410if ((null != value) && (DBNull.Value != value) && (typeof(object) != destinationType.dataType)) { 412if (currentType != destinationType.dataType) { 414if ((typeof(string) == destinationType.dataType) && (typeof(char[]) == currentType)) { 420value = Convert.ChangeType(value, destinationType.dataType, (IFormatProvider)null); 429throw ADP.ParameterConversionFailed(value, destinationType.dataType, e); // WebData 75433