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

  • 相关阅读:
    前端开发资料、实用小工具
    冒泡排序法,二分查找法
    数组练习
    一维数组练习题
    for循环输出菱形
    练习题
    课堂练习
    gO语言的安装和环境变量的配置
    PO BO VO DTO POJO DAO 概念及其作用
    BaseServlet
  • 原文地址:https://www.cnblogs.com/guojian/p/5821659.html
Copyright © 2011-2022 走看看