Microsoft SQL Server 2005 数据类型 与程序语言数据类型对照

来源:互联网 发布:国家宏观经济数据 编辑:程序博客网 时间:2024/05/18 00:18
 

序号

类别

SQL

C#

备注

1

整数

bit

Boolean

True转换为1,False转换为0

2

tinyint

Byte

C#数据类型都位于System命名空间

3

smallint

Int16

4

int

Int32

5

bigint

Int64

6

smallmoney

decimal

7

money

decimal

8

numeric

decimal

9

decimal

decimal

10

浮点数

float

double

11

real

single

12

日期和时间

smalldatetime

datetime

13

datetime

datetime

14

timestamp

datetime

15

字符串

char

string

16

text

string

17

varchar

string

18

nchar

string

19

ntext

string

20

nvarchar

string

21

二进制数据

binary

Byte[]

22

varbinary

Byte[]

23

image

Byte[]

24

其他

uniqueidentifier

guid

25

variant

object