C#程序值类型与数据库值类型对应关系

来源:互联网 发布:网络信息安全资质 编辑:程序博客网 时间:2024/06/01 08:25
数据库                 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
0 0
原创粉丝点击