* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / System.Data.OracleClient / System.Data.OracleClient.Oci / OciColumnInfo.cs
1 // 
2 // OciColumnInfo.cs 
3 //  
4 // Part of managed C#/.NET library System.Data.OracleClient.dll
5 //
6 // Part of the Mono class libraries at
7 // mcs/class/System.Data.OracleClient/System.Data.OracleClient.Oci
8 //
9 // Assembly: System.Data.OracleClient.dll
10 // Namespace: System.Data.OracleClient.Oci
11 // 
12 // Author: 
13 //     Tim Coleman <tim@timcoleman.com>
14 //         
15 // Copyright (C) Tim Coleman, 2003
16 // 
17
18 using System;
19
20 namespace System.Data.OracleClient.Oci {
21         internal struct OciColumnInfo 
22         {
23                 public string ColumnName;
24                 public int ColumnOrdinal;
25                 public ushort ColumnSize;
26                 public byte Precision;
27                 public sbyte Scale;
28                 public OciDataType DataType;
29                 public bool AllowDBNull;
30                 public string BaseColumnName;
31         }
32 }