Search for
in snippet title/description
in snippet text
Browse Code
Add-Ins
Blog
Language Feeds
Service Stats
FAQs
Feedback
About
Manage Your Code
Login
Register
Snippet: List all SQL Server Data Types (C#)
Title:
List all SQL Server Data Types
Language:
C#
Description:
Lists all of the SQL Server data types that are available
Views:
841
Author:
James Taylor
Date Added:
1/22/2008
Copy
Code
1
foreach
(
string
s
in
Enum.GetNames(
typeof
(System.Data.SqlDbType))) {
2
Console.WriteLine(s);
3
}
foreach (string s in Enum.GetNames(typeof(System.Data.SqlDbType))) { Console.WriteLine(s); }