SQL SERVER类型与C#类型对照
SQL SERVER类型
C#类型
int
Int32
text
String
bigint
Int64
binary
System.Byte[]
bit
Boolean
char
String
datetime
System.DateTime
decimal
System.Decimal
float
System.Double
image
System.Byte[]
money
System.Decimal
nchar
String
ntext
String
numeric
System.Decimal
nvarchar
String
real
System.Single
smalldatetime
System.DateTime
smallint
Int16
smallmoney
System.Decimal
timestamp
System.DateTime
tinyint
System.Byte
uniqueidentifier
System.Guid
varbinary
System.Byte[]
varchar
String
Variant
Object
SQL SERVER类型与C#类型对照(二)
SQL SERVER类型
C#类型
精确数字
bigint
-2^63 (-9223372036854775808) 2^63-1 (9223372036854775807) 的整型数据(所有数字)。存储大小为 8 个字节。
Int64
int
-2^31 (-2,147,483,648) 2^31 - 1 (2,147,483,647) 的整型数据(所有数字)。存储大小为 4 个字节。int SQL-92 同义字为 integer
Int32
smallint
-2^15 (-32,768) 2^15 - 1 (32,767) 的整型数据。存储大小为 2 个字节。
Int16
tinyint
0 255 的整型数据。存储大小为 1 字节。
System.Byte
bit
1 0 的整数数据。
Boolean
decimal
-10^38 +1 10^38 –1 的固定精度和小数位的数字数据。
System.Decimal
numeric
功能上等同于 decimal
System.Decimal
money
货币数据值介于 -2^63 (-922,337,203,685,477.5808) 2^63 - 1 (+922,337,203,685,477.5807) 之间,精确到货币单位的千分之十。
System.Decimal
smallmoney
货币数据值介于 -214,748.3648 +214,748.3647 之间,精确到货币单位的千分之十。
System.Decimal
近似数字
float
-1.79E + 308 1.79E + 308 的浮点精度数字。
System.Double
real
-3.40E + 38 3.40E + 38 的浮点精度数字。
System.Single
datetime
1753 1 1 日到 9999 长度介于0和59字符串年 12 31 日的日期和时间数据,精确到百分之三秒(或 3.33 毫秒)。
System.DateTime
smalldatetime
1900 1 1 日到 2079 6 6 日的日期和时间数据,精确到分钟。
System.DateTime
字符串
char
固定长度的非 Unicode 字符数据,最大长度为 8,000 个字符。
String
varchar
可变长度的非 Unicode 数据,最长为 8,000 个字符。
String
text
可变长度的非 Unicode 数据,最大长度为 2^31 - 1 (2,147,483,647) 个字符。
String
Unicode 字符串
nchar
固定长度的 Unicode 数据,最大长度为 4,000 个字符。
String
nvarchar
可变长度 Unicode 数据,其最大长度为 4,000 字符。sysname 是系统提供用户定义的数据类型,在功能上等同于 nvarchar(128),用于引用数据库对象名。
String
ntext
可变长度 Unicode 数据,其最大长度为 2^30 - 1 (1,073,741,823) 个字符。
String
二进制字符串
binary
固定长度的二进制数据,其最大长度为 8,000 个字节。
System.Byte[]
varbinary
可变长度的二进制数据,其最大长度为 8,000 个字节。
System.Byte[]
image
可变长度的二进制数据,其最大长度为 2^31 - 1 (2,147,483,647) 个字节。
System.Byte[]
其它数据类型
timestamp
数据库范围的唯一数字,每次更新行时也进行更新。
System.DateTime
uniqueidentifier
全局唯一标识符 (GUID)
System.Guid
Variant
Object

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。