Use ExecuteReader instead of ExecuteNonQuery. We need to use the CommandBehavior...
[mono.git] / mcs / class / System.Data / System.Data.Common / SchemaTableColumn.cs
1 //
2 // System.Data.Common.SchemaTableColumn.cs
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2003
8 //
9
10 #if NET_1_2
11
12 namespace System.Data.Common {
13         public sealed class SchemaTableColumn 
14         {
15                 #region Fields
16                         public static readonly string AllowDBNull = "AllowDBNull";
17                         public static readonly string BaseColumnName = "BaseColumnName";
18                         public static readonly string BaseSchemaName = "BaseSchemaName";
19                         public static readonly string BaseTableName = "BaseTableName";
20                         public static readonly string ColumnName = "ColumnName";
21                         public static readonly string ColumnOrdinal = "ColumnOrdinal";
22                         public static readonly string ColumnSize = "ColumnSize";
23                         public static readonly string DataType = "DataType";
24                         public static readonly string IsAliased = "IsAliased";
25                         public static readonly string IsExpression = "IsExpression";
26                         public static readonly string IsKey = "IsKey";
27                         public static readonly string IsLong = "IsLong";
28                         public static readonly string IsUnique = "IsUnique";
29                         public static readonly string NumericPrecision = "NumericPrecision";
30                         public static readonly string NumericScale = "NumericScale";
31                         public static readonly string ProviderType = "ProviderType";
32
33                 #endregion // Fields
34         }
35 }
36
37 #endif // NET_1_2