(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / ByteFX.Data / Common / Field.cs
blob6f1b84a0207fc4c161f40660397c16d72e578d72
1 using System;
2 using System.Data;
3 using System.Data.SqlTypes;
5 namespace ByteFX.Data.Common
7 /// <summary>
8 /// Summary description for Field.
9 /// </summary>
10 internal class Field
12 /* protected SqlByte byteValue;
13 protected SqlDateTime dateValue;
14 protected SqlString stringValue;
15 protected SqlInt32 int32Value;
16 protected SqlInt64 int64Value;
17 protected SqlDouble doubleValue;
18 protected SqlSingle singleValue;
19 protected SqlMoney moneyValue;
20 protected SqlDecimal decimalValue;
21 protected SqlBinary binaryValue;*/
22 protected object value;
24 protected string tableName;
25 protected string colName;
26 protected int colLen;
27 protected string catalogName;
28 protected DbType dbType;
29 protected bool hasValue;
31 public Field()
33 hasValue = false;
36 public string ColumnName
38 get { return colName; }
39 set { colName = value; }
42 public int ColumnLength
44 get { return colLen; }
45 set { colLen = value; }
48 public string TableName
50 get { return tableName; }
51 set { tableName = value; }
54 public string CatalogName
56 get { return catalogName; }
57 set { catalogName = value; }