Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Data/System.Data/SqlDbType.cs')
-rw-r--r--mcs/class/System.Data/System.Data/SqlDbType.cs45
1 files changed, 0 insertions, 45 deletions
diff --git a/mcs/class/System.Data/System.Data/SqlDbType.cs b/mcs/class/System.Data/System.Data/SqlDbType.cs
deleted file mode 100644
index 9c4afccf5e0..00000000000
--- a/mcs/class/System.Data/System.Data/SqlDbType.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-//
-// System.Data.SqlDbType.cs
-//
-// Author:
-// Christopher Podurgiel (cpodurgiel@msn.com)
-//
-// (C) Chris Podurgiel
-//
-
-using System;
-
-namespace System.Data
-{
- /// <summary>
- /// Specifies SQL Server data types.
- /// </summary>
- [Serializable]
- public enum SqlDbType
- {
- BigInt = 0,
- Binary = 1,
- Bit = 2,
- Char = 3,
- DateTime = 4,
- Decimal = 5,
- Float = 6,
- Image = 7,
- Int = 8,
- Money = 9,
- NChar = 10,
- NText = 11,
- NVarChar = 12,
- Real = 13,
- UniqueIdentifier = 14,
- SmallDateTime = 15,
- SmallInt = 16,
- SmallMoney = 17,
- Text = 18,
- Timestamp = 19,
- TinyInt = 20,
- VarBinary = 21,
- VarChar = 22,
- Variant = 23
- }
-} \ No newline at end of file