zoukankan      html  css  js  c++  java
  • SQL Server类型与dotnet类型的对应关系

    .NET Framework Data Provider for SQL Server

    SQL Server type .NET Framework type .NET Framework typed accessor SqlType typed accessor
    bigint Int64 GetInt64() GetSqlInt64()
    binary Byte[] GetBytes() GetSqlBinary()
    bit Boolean GetBoolean() GetSqlBit()
    char String

    Char[]

    GetString()

    GetChars()

    GetSqlString()
    datetime DateTime GetDateTime() GetSqlDateTime()
    decimal Decimal GetDecimal() GetSqlDecimal()
    float Double GetDouble() GetSqlDouble()
    image Byte[] GetBytes() GetSqlBinary()
    int Int32 GetInt32() GetSqlInt32()
    money Decimal GetDecimal() GetSqlMoney()
    nchar String

    Char[]

    GetString()

    GetChars()

    GetSqlString()
    ntext String

    Char[]

    GetString()

    GetChars()

    GetSqlString()
    numeric Decimal GetDecimal() GetSqlDecimal()
    nvarchar String

    Char[]

    GetString()

    GetChars()

    GetSqlString()
    real Single GetFloat() GetSqlSingle()
    smalldatetime DateTime GetDateTime() GetSqlDateTime()
    smallint Int16 GetInt16() GetSqlInt16()
    smallmoney Decimal GetDecimal() GetSqlDecimal()
    sql_variant Object * GetValue() * GetSqlValue() *
    text String

    Char[]

    GetString()

    GetChars()

    GetSqlString()
    timestamp Byte[] GetBytes() GetSqlBinary()
    tinyint Byte GetByte() GetSqlByte()
    uniqueidentifier Guid GetGuid() GetSqlGuid()
    varbinary Byte[] GetBytes() GetSqlBinary()
    varchar String

    Char[]

    GetString()

    GetChars()

    GetSqlString()

    如想知道与其他数据库的对应关系。看MSDN:http://msdn2.microsoft.com/en-us/library/4e5xt97a(vs.71).aspx
  • 相关阅读:
    今晚的比赛(2011.12.4)
    js中prototype,constructor的理解
    laravel中empty(),is_null() 以及isEmpty()
    mysql查询语句and,or
    jquery简易tab切换
    Qt 的QcomboBox的简单使用
    折半查找
    C++强制类型转换(转)
    二叉树学习
    c++的重载,覆盖与隐藏
  • 原文地址:https://www.cnblogs.com/luanwey/p/719146.html
Copyright © 2011-2022 走看看