1 write to dataType
System.Data.OleDb (1)
OleDb_Enum.cs (1)
204this.dataType = dataType;
10 references to dataType
System.Data.OleDb (10)
ColumnBinding.cs (1)
126get { return NativeDBType.FromDBType(DbType, false, false).dataType!; }
OleDbDataReader.cs (2)
397newRow[dataType] = info.type.dataType; 1014Type? fieldType = _metadata[index].type.dataType;
OleDbMetaDataFactory.cs (1)
426newRow[clrType] = nativeType.dataType!.FullName;
OleDbParameter.cs (6)
361throw ADP.UninitializedParameterSize(index, _coerceMetaType.dataType!); 467if ((null != value) && (DBNull.Value != value) && (typeof(object) != destinationType.dataType)) 470if (currentType != destinationType.dataType) 474if ((typeof(string) == destinationType.dataType) && (typeof(char[]) == currentType)) 483value = Convert.ChangeType(value, destinationType.dataType!, null); 494throw ADP.ParameterConversionFailed(value, destinationType.dataType!, e);