141 references to DataColumn
System.Data (141)
fx\src\data\System\Data\Common\DataColumnMapping.cs (1)
151
return new
DataColumn
(dataSetColumn, dataType);
fx\src\data\System\Data\Common\DbProviderFactoriesConfigurationHandler.cs (4)
261
DataColumn frme = new
DataColumn
("Name", typeof(string));
263
DataColumn desc = new
DataColumn
("Description", typeof(string));
265
DataColumn invr = new
DataColumn
("InvariantName", typeof(string));
267
DataColumn qual = new
DataColumn
("AssemblyQualifiedName", typeof(string));
fx\src\data\System\Data\Common\DBSchemaRow.cs (1)
25
sortindex = new
DataColumn
(SchemaMappingUnsortedIndex, typeof(Int32)); // MDAC 67050
fx\src\data\System\Data\DataColumnCollection.cs (1)
209
DataColumn column = new
DataColumn
(columnName, type);
fx\src\data\System\Data\DataTableReader.cs (25)
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));
617
DataColumn IsReadOnly = new
DataColumn
(SchemaTableOptionalColumn.IsReadOnly, typeof(System.Boolean));
618
DataColumn IsRowVersion = new
DataColumn
(SchemaTableOptionalColumn.IsRowVersion, typeof(System.Boolean));
619
DataColumn IsUnique = new
DataColumn
(SchemaTableColumn.IsUnique, typeof(System.Boolean));
620
DataColumn IsKeyColumn = new
DataColumn
(SchemaTableColumn.IsKey, typeof(System.Boolean));
621
DataColumn IsAutoIncrement = new
DataColumn
(SchemaTableOptionalColumn.IsAutoIncrement, typeof(System.Boolean));
622
DataColumn BaseSchemaName = new
DataColumn
(SchemaTableColumn.BaseSchemaName, typeof(System.String));
623
DataColumn BaseCatalogName = new
DataColumn
(SchemaTableOptionalColumn.BaseCatalogName, typeof(System.String));
624
DataColumn BaseTableName = new
DataColumn
(SchemaTableColumn.BaseTableName, typeof(System.String));
625
DataColumn BaseColumnName = new
DataColumn
(SchemaTableColumn.BaseColumnName, typeof(System.String));
626
DataColumn AutoIncrementSeed = new
DataColumn
(SchemaTableOptionalColumn.AutoIncrementSeed, typeof(System.Int64));
627
DataColumn AutoIncrementStep = new
DataColumn
(SchemaTableOptionalColumn.AutoIncrementStep, typeof(System.Int64));
628
DataColumn DefaultValue = new
DataColumn
(SchemaTableOptionalColumn.DefaultValue, typeof(System.Object));
629
DataColumn Expression = new
DataColumn
(SchemaTableOptionalColumn.Expression, typeof(System.String));
630
DataColumn ColumnMapping = new
DataColumn
(SchemaTableOptionalColumn.ColumnMapping, typeof(System.Data.MappingType));
631
DataColumn BaseTableNamespace = new
DataColumn
(SchemaTableOptionalColumn.BaseTableNamespace, typeof(System.String));
632
DataColumn BaseColumnNamespace = new
DataColumn
(SchemaTableOptionalColumn.BaseColumnNamespace, typeof(System.String));
fx\src\data\System\Data\Odbc\OdbcDataReader.cs (18)
1928
columns.Add(new
DataColumn
("ColumnName", typeof(System.String)));
1929
columns.Add(new
DataColumn
("ColumnOrdinal", typeof(System.Int32))); // UInt32
1930
columns.Add(new
DataColumn
("ColumnSize", typeof(System.Int32))); // UInt32
1931
columns.Add(new
DataColumn
("NumericPrecision", typeof(System.Int16))); // UInt16
1932
columns.Add(new
DataColumn
("NumericScale", typeof(System.Int16)));
1933
columns.Add(new
DataColumn
("DataType", typeof(System.Object)));
1934
columns.Add(new
DataColumn
("ProviderType", typeof(System.Int32)));
1935
columns.Add(new
DataColumn
("IsLong", typeof(System.Boolean)));
1936
columns.Add(new
DataColumn
("AllowDBNull", typeof(System.Boolean)));
1937
columns.Add(new
DataColumn
("IsReadOnly", typeof(System.Boolean)));
1938
columns.Add(new
DataColumn
("IsRowVersion", typeof(System.Boolean)));
1939
columns.Add(new
DataColumn
("IsUnique", typeof(System.Boolean)));
1940
columns.Add(new
DataColumn
("IsKey", typeof(System.Boolean)));
1941
columns.Add(new
DataColumn
("IsAutoIncrement", typeof(System.Boolean)));
1942
columns.Add(new
DataColumn
("BaseSchemaName", typeof(System.String)));
1943
columns.Add(new
DataColumn
("BaseCatalogName", typeof(System.String)));
1944
columns.Add(new
DataColumn
("BaseTableName", typeof(System.String)));
1945
columns.Add(new
DataColumn
("BaseColumnName", typeof(System.String)));
fx\src\data\System\Data\OleDb\OleDbConnectionInternal.cs (9)
378
DataColumn literalName = new
DataColumn
("LiteralName", typeof(String));
379
DataColumn literalValue = new
DataColumn
("LiteralValue", typeof(String));
380
DataColumn invalidChars = new
DataColumn
("InvalidChars", typeof(String));
381
DataColumn invalidStart = new
DataColumn
("InvalidStartingChars", typeof(String));
382
DataColumn literal = new
DataColumn
("Literal", typeof(Int32));
383
DataColumn maxlen = new
DataColumn
("Maxlen", typeof(Int32));
431
DataColumn keyword = new
DataColumn
(ODB.Keyword, typeof(String));
477
DataColumn schemaGuid = new
DataColumn
(ODB.Schema, typeof(Guid));
478
DataColumn restrictionSupport = new
DataColumn
(ODB.RestrictionSupport, typeof(Int32));
fx\src\data\System\Data\OleDb\OleDbDataReader.cs (19)
306
DataColumn name = new
DataColumn
("ColumnName", typeof(System.String));
307
DataColumn ordinal = new
DataColumn
("ColumnOrdinal", typeof(System.Int32));
308
DataColumn size = new
DataColumn
("ColumnSize", typeof(System.Int32));
309
DataColumn precision = new
DataColumn
("NumericPrecision", typeof(System.Int16));
310
DataColumn scale = new
DataColumn
("NumericScale", typeof(System.Int16));
312
DataColumn dataType = new
DataColumn
("DataType", typeof(System.Type));
313
DataColumn providerType = new
DataColumn
("ProviderType", typeof(System.Int32));
315
DataColumn isLong = new
DataColumn
("IsLong", typeof(System.Boolean));
316
DataColumn allowDBNull = new
DataColumn
("AllowDBNull", typeof(System.Boolean));
317
DataColumn isReadOnly = new
DataColumn
("IsReadOnly", typeof(System.Boolean));
318
DataColumn isRowVersion = new
DataColumn
("IsRowVersion", typeof(System.Boolean));
320
DataColumn isUnique = new
DataColumn
("IsUnique", typeof(System.Boolean));
321
DataColumn isKey = new
DataColumn
("IsKey", typeof(System.Boolean));
322
DataColumn isAutoIncrement = new
DataColumn
("IsAutoIncrement", typeof(System.Boolean));
323
DataColumn isHidden = new
DataColumn
("IsHidden", typeof(System.Boolean));
325
DataColumn baseSchemaName = new
DataColumn
("BaseSchemaName", typeof(System.String));
326
DataColumn baseCatalogName = new
DataColumn
("BaseCatalogName", typeof(System.String));
327
DataColumn baseTableName = new
DataColumn
("BaseTableName", typeof(System.String));
328
DataColumn baseColumnName = new
DataColumn
("BaseColumnName", typeof(System.String));
fx\src\data\System\Data\ProviderBase\DbMetaDataFactory.cs (1)
229
newDestinationColumn = new
DataColumn
(sourceColumn.ColumnName,sourceColumn.DataType);
fx\src\data\System\Data\SqlClient\SqlDataReader.cs (31)
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));
437
DataColumn ProviderSpecificDataType = new
DataColumn
(SchemaTableOptionalColumn.ProviderSpecificDataType, 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));
443
DataColumn IsReadOnly = new
DataColumn
(SchemaTableOptionalColumn.IsReadOnly, typeof(System.Boolean));
444
DataColumn IsRowVersion = new
DataColumn
(SchemaTableOptionalColumn.IsRowVersion, typeof(System.Boolean));
446
DataColumn IsUnique = new
DataColumn
(SchemaTableColumn.IsUnique, typeof(System.Boolean));
447
DataColumn IsKey = new
DataColumn
(SchemaTableColumn.IsKey, typeof(System.Boolean));
448
DataColumn IsAutoIncrement = new
DataColumn
(SchemaTableOptionalColumn.IsAutoIncrement, typeof(System.Boolean));
449
DataColumn IsHidden = new
DataColumn
(SchemaTableOptionalColumn.IsHidden, typeof(System.Boolean));
451
DataColumn BaseCatalogName = new
DataColumn
(SchemaTableOptionalColumn.BaseCatalogName, typeof(System.String));
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));
457
DataColumn BaseServerName = new
DataColumn
(SchemaTableOptionalColumn.BaseServerName, typeof(System.String));
458
DataColumn IsAliased = new
DataColumn
(SchemaTableColumn.IsAliased, typeof(System.Boolean));
459
DataColumn IsExpression = new
DataColumn
(SchemaTableColumn.IsExpression, typeof(System.Boolean));
460
DataColumn IsIdentity = new
DataColumn
("IsIdentity", typeof(System.Boolean));
461
DataColumn DataTypeName = new
DataColumn
("DataTypeName", typeof(System.String));
462
DataColumn UdtAssemblyQualifiedName = new
DataColumn
("UdtAssemblyQualifiedName", typeof(System.String));
464
DataColumn XmlSchemaCollectionDatabase = new
DataColumn
("XmlSchemaCollectionDatabase", typeof(System.String));
465
DataColumn XmlSchemaCollectionOwningSchema = new
DataColumn
("XmlSchemaCollectionOwningSchema", typeof(System.String));
466
DataColumn XmlSchemaCollectionName = new
DataColumn
("XmlSchemaCollectionName", typeof(System.String));
468
DataColumn IsColumnSet = new
DataColumn
("IsColumnSet", typeof(System.Boolean));
fx\src\data\System\Data\SqlClient\SqlDataReaderSmi.cs (31)
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));
477
DataColumn ProviderSpecificDataType = new
DataColumn
(SchemaTableOptionalColumn.ProviderSpecificDataType, 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));
483
DataColumn IsReadOnly = new
DataColumn
(SchemaTableOptionalColumn.IsReadOnly, typeof(System.Boolean));
484
DataColumn IsRowVersion = new
DataColumn
(SchemaTableOptionalColumn.IsRowVersion, typeof(System.Boolean));
486
DataColumn IsUnique = new
DataColumn
(SchemaTableColumn.IsUnique, typeof(System.Boolean));
487
DataColumn IsKey = new
DataColumn
(SchemaTableColumn.IsKey, typeof(System.Boolean));
488
DataColumn IsAutoIncrement = new
DataColumn
(SchemaTableOptionalColumn.IsAutoIncrement, typeof(System.Boolean));
489
DataColumn IsHidden = new
DataColumn
(SchemaTableOptionalColumn.IsHidden, typeof(System.Boolean));
491
DataColumn BaseCatalogName = new
DataColumn
(SchemaTableOptionalColumn.BaseCatalogName, typeof(System.String));
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));
497
DataColumn BaseServerName = new
DataColumn
(SchemaTableOptionalColumn.BaseServerName, typeof(System.String));
498
DataColumn IsAliased = new
DataColumn
(SchemaTableColumn.IsAliased, typeof(System.Boolean));
499
DataColumn IsExpression = new
DataColumn
(SchemaTableColumn.IsExpression, typeof(System.Boolean));
500
DataColumn IsIdentity = new
DataColumn
("IsIdentity", typeof(System.Boolean));
502
DataColumn DataTypeName = new
DataColumn
("DataTypeName", typeof(System.String));
503
DataColumn UdtAssemblyQualifiedName = new
DataColumn
("UdtAssemblyQualifiedName", typeof(System.String));
505
DataColumn XmlSchemaCollectionDatabase = new
DataColumn
("XmlSchemaCollectionDatabase", typeof(System.String));
506
DataColumn XmlSchemaCollectionOwningSchema = new
DataColumn
("XmlSchemaCollectionOwningSchema", typeof(System.String));
507
DataColumn XmlSchemaCollectionName = new
DataColumn
("XmlSchemaCollectionName", typeof(System.String));
509
DataColumn IsColumnSet = new
DataColumn
("IsColumnSet", typeof(System.Boolean));