80 references to SchemaTableColumn
System.Data (80)
fx\src\data\Microsoft\SqlServer\Server\MetadataUtilsSmi.cs (8)
740
object temp = schemaRow[
SchemaTableColumn
.ColumnName];
746
temp = schemaRow[
SchemaTableColumn
.DataType];
791
temp = schemaRow[
SchemaTableColumn
.ColumnSize];
821
temp = schemaRow[
SchemaTableColumn
.ColumnSize];
851
temp = schemaRow[
SchemaTableColumn
.ColumnSize];
880
temp = schemaRow[
SchemaTableColumn
.NumericPrecision];
888
temp = schemaRow[
SchemaTableColumn
.NumericScale];
908
temp = schemaRow[
SchemaTableColumn
.NumericScale];
fx\src\data\System\Data\Common\DBSchemaTable.cs (13)
43
SchemaTableColumn
.ColumnName,
44
SchemaTableColumn
.ColumnOrdinal,
45
SchemaTableColumn
.ColumnSize,
48
SchemaTableColumn
.BaseColumnName,
49
SchemaTableColumn
.BaseSchemaName,
50
SchemaTableColumn
.BaseTableName,
52
SchemaTableColumn
.IsUnique,
53
SchemaTableColumn
.IsKey,
55
SchemaTableColumn
.DataType,
57
SchemaTableColumn
.AllowDBNull,
58
SchemaTableColumn
.ProviderType,
59
SchemaTableColumn
.IsExpression,
61
SchemaTableColumn
.IsLong,
fx\src\data\System\Data\DataTableReader.cs (14)
608
DataColumn ColumnName = new DataColumn(
SchemaTableColumn
.ColumnName, typeof(System.String));
609
DataColumn ColumnOrdinal = new DataColumn(
SchemaTableColumn
.ColumnOrdinal, typeof(System.Int32));
610
DataColumn ColumnSize = new DataColumn(
SchemaTableColumn
.ColumnSize, typeof(System.Int32));
611
DataColumn NumericPrecision = new DataColumn(
SchemaTableColumn
.NumericPrecision, typeof(System.Int16));
612
DataColumn NumericScale = new DataColumn(
SchemaTableColumn
.NumericScale, typeof(System.Int16));
613
DataColumn DataType = new DataColumn(
SchemaTableColumn
.DataType, typeof(System.Type));
614
DataColumn ProviderType = new DataColumn(
SchemaTableColumn
.ProviderType, typeof(System.Int32));
615
DataColumn IsLong = new DataColumn(
SchemaTableColumn
.IsLong, typeof(System.Boolean));
616
DataColumn AllowDBNull = new DataColumn(
SchemaTableColumn
.AllowDBNull, typeof(System.Boolean));
619
DataColumn IsUnique = new DataColumn(
SchemaTableColumn
.IsUnique, typeof(System.Boolean));
620
DataColumn IsKeyColumn = new DataColumn(
SchemaTableColumn
.IsKey, typeof(System.Boolean));
622
DataColumn BaseSchemaName = new DataColumn(
SchemaTableColumn
.BaseSchemaName, typeof(System.String));
624
DataColumn BaseTableName = new DataColumn(
SchemaTableColumn
.BaseTableName, typeof(System.String));
625
DataColumn BaseColumnName = new DataColumn(
SchemaTableColumn
.BaseColumnName, typeof(System.String));
fx\src\data\System\Data\Odbc\OdbcCommandBuilder.cs (3)
87
object valueType = datarow[
SchemaTableColumn
.ProviderType];
90
object bvalue = datarow[
SchemaTableColumn
.NumericPrecision];
96
bvalue = datarow[
SchemaTableColumn
.NumericScale];
fx\src\data\System\Data\OleDb\OleDbCommandBuilder.cs (3)
82
object valueType = datarow[
SchemaTableColumn
.ProviderType];
85
object bvalue = datarow[
SchemaTableColumn
.NumericPrecision];
91
bvalue = datarow[
SchemaTableColumn
.NumericScale];
fx\src\data\System\Data\SqlClient\SqlCommandBuilder.cs (3)
162
object valueType = datarow[
SchemaTableColumn
.ProviderType];
173
object bvalue = datarow[
SchemaTableColumn
.NumericPrecision];
179
bvalue = datarow[
SchemaTableColumn
.NumericScale];
fx\src\data\System\Data\SqlClient\SqlDataReader.cs (17)
430
DataColumn ColumnName = new DataColumn(
SchemaTableColumn
.ColumnName, typeof(System.String));
431
DataColumn Ordinal = new DataColumn(
SchemaTableColumn
.ColumnOrdinal, typeof(System.Int32));
432
DataColumn Size = new DataColumn(
SchemaTableColumn
.ColumnSize, typeof(System.Int32));
433
DataColumn Precision = new DataColumn(
SchemaTableColumn
.NumericPrecision, typeof(System.Int16));
434
DataColumn Scale = new DataColumn(
SchemaTableColumn
.NumericScale, typeof(System.Int16));
436
DataColumn DataType = new DataColumn(
SchemaTableColumn
.DataType, typeof(System.Type));
438
DataColumn NonVersionedProviderType = new DataColumn(
SchemaTableColumn
.NonVersionedProviderType, typeof(System.Int32));
439
DataColumn ProviderType = new DataColumn(
SchemaTableColumn
.ProviderType, typeof(System.Int32));
441
DataColumn IsLong = new DataColumn(
SchemaTableColumn
.IsLong, typeof(System.Boolean));
442
DataColumn AllowDBNull = new DataColumn(
SchemaTableColumn
.AllowDBNull, typeof(System.Boolean));
446
DataColumn IsUnique = new DataColumn(
SchemaTableColumn
.IsUnique, typeof(System.Boolean));
447
DataColumn IsKey = new DataColumn(
SchemaTableColumn
.IsKey, typeof(System.Boolean));
452
DataColumn BaseSchemaName = new DataColumn(
SchemaTableColumn
.BaseSchemaName, typeof(System.String));
453
DataColumn BaseTableName = new DataColumn(
SchemaTableColumn
.BaseTableName, typeof(System.String));
454
DataColumn BaseColumnName = new DataColumn(
SchemaTableColumn
.BaseColumnName, typeof(System.String));
458
DataColumn IsAliased = new DataColumn(
SchemaTableColumn
.IsAliased, typeof(System.Boolean));
459
DataColumn IsExpression = new DataColumn(
SchemaTableColumn
.IsExpression, typeof(System.Boolean));
fx\src\data\System\Data\SqlClient\SqlDataReaderSmi.cs (17)
470
DataColumn ColumnName = new DataColumn(
SchemaTableColumn
.ColumnName, typeof(System.String));
471
DataColumn Ordinal = new DataColumn(
SchemaTableColumn
.ColumnOrdinal, typeof(System.Int32));
472
DataColumn Size = new DataColumn(
SchemaTableColumn
.ColumnSize, typeof(System.Int32));
473
DataColumn Precision = new DataColumn(
SchemaTableColumn
.NumericPrecision, typeof(System.Int16));
474
DataColumn Scale = new DataColumn(
SchemaTableColumn
.NumericScale, typeof(System.Int16));
476
DataColumn DataType = new DataColumn(
SchemaTableColumn
.DataType, typeof(System.Type));
478
DataColumn ProviderType = new DataColumn(
SchemaTableColumn
.ProviderType, typeof(System.Int32));
479
DataColumn NonVersionedProviderType = new DataColumn(
SchemaTableColumn
.NonVersionedProviderType, typeof(System.Int32));
481
DataColumn IsLong = new DataColumn(
SchemaTableColumn
.IsLong, typeof(System.Boolean));
482
DataColumn AllowDBNull = new DataColumn(
SchemaTableColumn
.AllowDBNull, typeof(System.Boolean));
486
DataColumn IsUnique = new DataColumn(
SchemaTableColumn
.IsUnique, typeof(System.Boolean));
487
DataColumn IsKey = new DataColumn(
SchemaTableColumn
.IsKey, typeof(System.Boolean));
492
DataColumn BaseSchemaName = new DataColumn(
SchemaTableColumn
.BaseSchemaName, typeof(System.String));
493
DataColumn BaseTableName = new DataColumn(
SchemaTableColumn
.BaseTableName, typeof(System.String));
494
DataColumn BaseColumnName = new DataColumn(
SchemaTableColumn
.BaseColumnName, typeof(System.String));
498
DataColumn IsAliased = new DataColumn(
SchemaTableColumn
.IsAliased, typeof(System.Boolean));
499
DataColumn IsExpression = new DataColumn(
SchemaTableColumn
.IsExpression, typeof(System.Boolean));
fx\src\data\System\Data\SqlClient\SqlParameter.cs (2)
1279
int ordinalForIsKey = schema.Columns[
SchemaTableColumn
.IsKey].Ordinal;
1280
int ordinalForColumnOrdinal = schema.Columns[
SchemaTableColumn
.ColumnOrdinal].Ordinal;