wasCSharpSQLite – Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2  
3 namespace System.Data.Common
4 {
5 internal class DbTypes
6 {
7 #region .Net types constants
8  
9 internal static readonly Type TypeOfBoolean = typeof(Boolean);
10 internal static readonly Type TypeOfSByte = typeof(SByte);
11 internal static readonly Type TypeOfChar = typeof(Char);
12 internal static readonly Type TypeOfInt16 = typeof(Int16);
13 internal static readonly Type TypeOfInt32 = typeof(Int32);
14 internal static readonly Type TypeOfInt64 = typeof(Int64);
15 internal static readonly Type TypeOfByte = typeof(Byte);
16 internal static readonly Type TypeOfUInt16 = typeof(UInt16);
17 internal static readonly Type TypeOfUInt32 = typeof(UInt32);
18 internal static readonly Type TypeOfUInt64 = typeof(UInt64);
19 internal static readonly Type TypeOfDouble = typeof(Double);
20 internal static readonly Type TypeOfSingle = typeof(Single);
21 internal static readonly Type TypeOfDecimal = typeof(Decimal);
22 internal static readonly Type TypeOfString = typeof(String);
23 internal static readonly Type TypeOfDateTime = typeof(DateTime);
24 internal static readonly Type TypeOfObject = typeof(object);
25 internal static readonly Type TypeOfGuid = typeof(Guid);
26 internal static readonly Type TypeOfType = typeof(Type);
27  
28 // additional types
29 internal static readonly Type TypeOfByteArray = typeof(Byte[]);
30 internal static readonly Type TypeOfFloat = typeof (float);
31 internal static readonly Type TypeOfTimespan = typeof (TimeSpan);
32  
33 #endregion // .Net types constants
34 }
35 }