vote up 7 vote down star
7

For the following SQL Server 2005 datatypes, what would be the corresponding datatype in C#?

Exact Numerics

bigint
numeric
bit
smallint
decimal
smallmoney
int
tinyint
money


Approximate Numerics

float
real


Date and Time

date
datetimeoffset
datetime2
smalldatetime
datetime
time


Character Strings

char
varchar
text


Unicode Character Strings

nchar
nvarchar
ntext


Binary Strings

binary
varbinary
image


Other Data Types

cursor
timestamp
hierarchyid
uniqueidentifier
sql_variant
xml
table

(source: MSDN)

flag

1  
I don't think SO should be the repository of reference questions, tables, ... Do you like to see ASCII table in SO?! – Mehrdad Afshari Jan 8 at 18:56
@Mehrdad: No, because I don't use ASCII Tables, I use Unicode tables. The good news is that a budding programmer who is writing a data access layer will see this information, and it will help him. At what level do you say a question is 'too beginner' for Stack Overflow? Can you even say that? – George Stocker Jan 8 at 19:06
1  
No, I wasn't saying that this question is beginner. I said this is really reference style. In fact, if someone needed this information, he would Google as you said and went to see the official reference. Is there really a need to replicate the MSDN table here? – Mehrdad Afshari Jan 9 at 9:03
@Mehrdad Afshari : See the comments below. MSDN documentation links have never been stable. – George Stocker Jan 9 at 12:17

2 Answers

vote up 8 vote down check

It could help to get this answer searchable to have it all in the post as Gortok wanted.

This is for SQL Server 2005, from the link http://msdn.microsoft.com/en-us/library/ms131092(SQL.90).aspx. There is an updated version of the table for SQL Server 2008.

SQL Server Data Types and Their .NET Framework Equivalents

The following table lists Microsoft SQL Server data types, their equivalents in the common language runtime (CLR) for SQL Server in the System.Data.SqlTypes namespace, and their native CLR equivalents in the Microsoft .NET Framework.

SQL Server data type          CLR data type (SQL Server)    CLR data type (.NET Framework)  
varbinary                     SqlBytes, SqlBinary           Byte[]  
binary                        SqlBytes, SqlBinary           Byte[]  
varbinary(1), binary(1)       SqlBytes, SqlBinary           byte, Byte[] 
image                         None                          None

varchar                       None                          None
char                          None                          None
nvarchar(1), nchar(1)         SqlChars, SqlString           Char, String, Char[]     
nvarchar                      SqlChars, SqlString           String, Char[] 
nchar                         SqlChars, SqlString           String, Char[] 
text                          None                          None
ntext                         None                          None

uniqueidentifier              SqlGuid                       Guid 
rowversion                    None                          Byte[]  
bit                           SqlBoolean                    Boolean 
tinyint                       SqlByte                       Byte 
smallint                      SqlInt16                      Int16  
int                           SqlInt32                      Int32  
bigint                        SqlInt64                      Int64 

smallmoney                    SqlMoney                      Decimal  
money                         SqlMoney                      Decimal  
numeric                       SqlDecimal                    Decimal  
decimal                       SqlDecimal                    Decimal  
real                          SqlSingle                     Single  
float                         SqlDouble                     Double  

smalldatetime                 SqlDateTime                   DateTime  
datetime                      SqlDateTime                   DateTime 

sql_variant                   None                          Object  
User-defined type(UDT)        None                          user-defined type     
table                         None                          None 
cursor                        None                          None
timestamp                     None                          None 
xml                           SqlXml                        None
link|flag
vote up 11 vote down

I think this is what you might be looking for:

http://msdn.microsoft.com/en-us/library/ms131092.aspx

link|flag
Could you post that here? I can see the link, but I know that links may die, so having that information on this site would be a boon. I'm voting you up anyway. :-) – George Stocker Jan 8 at 18:55
1  
MSDN is pretty reliable, as links go. It's not like linking into a random blog or forum somewhere. – Joel Coehoorn Jan 8 at 19:31
1  
I found this by googling "c# sql data types". I think having the link here is even a bit of overkill as this kind of information is not difficult to find. – Andrew Hare Jan 8 at 19:35
@Joel Coehoorn: Really? I can't count the number of times I've clicked an MSDN link and got the "That has moved, and we don't know where" message. Maybe it's better now than historically, but I know I've seen that page more than once! – Harper Shelby Jan 8 at 19:41
@Harper Shelby: I second that! Microsoft is terrible about restructuring their URIs and invalidating old links. So much so that I sometimes hesitate before posting MSDN links here on SO, worried that someone who stumbles upon the post a few years from now may be left high and dry. – P Daddy Jan 8 at 20:30
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.