zoukankan      html  css  js  c++  java
  • 【网络收集】数据库中字段类型对应C#中的数据类型

    数据库中字段类型对应C#中的数据类型:
    数据库                 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 
  • 相关阅读:
    第二章:列表简介
    第三章:shell变量知识进阶
    第二章:shell变量
    WEB服务器
    第一章:变量和简单的数据类型
    第一节:python基础
    第一章:shell脚本初入门
    vim命令
    知识点一:OSI模型初识
    知识点二:HTTP超文本文件传输协议
  • 原文地址:https://www.cnblogs.com/xiaozizi/p/5816775.html
Copyright © 2011-2022 走看看