C#等价于SQL Server数据类型

对于以下SQL Server数据类型,C#中相应的数据类型是什么?

精确的数字

bigint
numeric
bit
smallint
decimal
smallmoney
int
tinyint
money

近似数字

float
real

日期和时间

date
datetimeoffset
datetime2
smalldatetime
datetime
time

字符串

char
varchar
text

Unicode字符字符串

nchar
nvarchar
ntext

二进制字符串

binary
varbinary
image

其他数据类型

cursor
timestamp
hierarchyid
uniqueidentifier
sql_variant
xml
table

(来源:MSDN)


这是针对SQL Server 2005的。SQL Server 2008,SQL Server 2008 R2,SQL Server 2012和SQL Server 2014的表有更新版本。

SQL Server数据类型及其.NET Framework等价物

下表列出了Microsoft SQL Server数据类型及其在System.Data.SqlTypes命名空间中的SQL Server的公共语言运行库(CLR)中的等效项,以及Microsoft .NET Framework中的本机CLR等效项。

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

SQL Server和.NET Framework基于不同的类型系统。 例如,.NET Framework Decimal结构的最大比例为28,而SQL Server小数和数字数据类型的最大比例为38.单击此处链接! 为细节

https://msdn.microsoft.com/en-us/library/cc716729(v=vs.110).aspx

链接地址: http://www.djcxy.com/p/16873.html

上一篇: C# Equivalent of SQL Server DataTypes

下一篇: Is it possible to execute update query in android using JDBC driver