zoukankan      html  css  js  c++  java
  • (转)SQL Server Data Types and Their .NET Framework Equivalents

    SQL Server data type          CLR data type (SQL Server)    CLR data type (.NET Framework)  
    varbinary                     SqlBytes, SqlBinary           Byte[] 
    binary                        SqlBytes, SqlBinary           Byte[] 
    varbinary(1), binary(1)       SqlBytes, SqlBinary           byte, Byte[]
    image                         None                          None

    varchar                       None                          None
    char                          None                          None
    nvarchar(1), nchar(1)         SqlChars, SqlString           Char, String, Char[]    
    nvarchar                      SqlChars, SqlString           String, Char[]
    nchar                         SqlChars, SqlString           String, Char[]
    text                          None                          None
    ntext                         None                          None

    uniqueidentifier              SqlGuid                       Guid
    rowversion                    None                          Byte[] 
    bit                           SqlBoolean                    Boolean
    tinyint                       SqlByte                       Byte
    smallint                      SqlInt16                      Int16 
    int                           SqlInt32                      Int32 
    bigint                        SqlInt64                      Int64

    smallmoney                    SqlMoney                      Decimal 
    money                         SqlMoney                      Decimal 
    numeric                       SqlDecimal                    Decimal 
    decimal                       SqlDecimal                    Decimal 
    real                          SqlSingle                     Single 
    float                         SqlDouble                     Double 

    smalldatetime                 SqlDateTime                   DateTime 
    datetime                      SqlDateTime                   DateTime

    sql_variant                   None                          Object 
    User-defined type(UDT)        None                          user-defined type    
    table                         None                          None
    cursor                        None                          None
    timestamp                     None                          None
    xml                           SqlXml                        None
  • 相关阅读:
    性能测试三:jmeter进阶之图形插件
    性能测试二:jmeter参数化+聚合报告
    性能测试一:jmeter基础入门
    pytest十六:allure2 生成 html 报告
    pytest十五:pytest-html 生成 html 报告
    Confluence 6 Cron 表达式
    Confluence 6 任务的类型
    Confluence 6 查看一个任务的执行历史
    Confluence 6 禁用或者重新启用一个任务
    Confluence 6 手动运行和修改
  • 原文地址:https://www.cnblogs.com/buhaiqing/p/1555482.html
Copyright © 2011-2022 走看看