zoukankan      html  css  js  c++  java
  • Managed Data Type Mappings (SQL Server Compact Edition)

    Microsoft SQL Server 2005 Compact Edition (SQL Server Compact Edition) does not fully support all .NET data types; when data is accessed by using ADO.NET, SQL Server Compact Edition must translate unsupported types to those that are supported.

    The following table shows the data type mappings between SQL Server Compact Edition and the .NET data provider.

    .NET Data Type SQL Server Compact Edition Data Type

    binary

    varbinary

    boolean

    bit

    byte

    tinyint

    byte[]

    varbinary

    datetime

    datetime

    decimal

    numeric

    double

    float

    guid

    uniqueidentifier

    image

    image

    int16

    smallint

    Uint16

    uint16

    int32

    int

    Uint32

    uint32

    int64

    bigint

    Uint64

    uint64

    SqlBinary

    varbinary

    SqlBoolean

    bit

    SqlByte

    tinyint

    SqlDecimal¹

    numeric

    SqlDateTime

    datetime

    SqlDouble

    float

    SqlGuid

    uniqueidentifier

    SqlInt16

    smallint

    SqlInt32

    int

    SqlInt64

    bigint

    SqlMoney

    money

    SqlSingle

    real

    SqlString

    nvarchar

    single

    real

    string

    nvarchar

    ¹ SQL Server Compact Edition supports SqlDecimal data type only up to 96 bits. If 96 bits are exceeded, SQL Server Compact Edition throws an overflow exception error.

  • 相关阅读:
    移动端开发 rem 案例
    html基值 仿淘宝
    使用FreeSWITCH做电话自动回访设置
    Nodejs 实现ESL内联FreeSWITCH设定说明
    ADC自动转接功能Lua实现
    sipML5聊天功能实现
    FreeSWITCH与PSTN对接
    FreeSWITCH Git版本管理
    FreeSWITCH Git版本管理
    SIP 认证
  • 原文地址:https://www.cnblogs.com/wmz/p/1261636.html
Copyright © 2011-2022 走看看