zoukankan      html  css  js  c++  java
  • Phoenix 的数据类型

     与一般数据库一样。


    INTEGER                               java.lang.Integer             -2147483648 to 2147483647   (4 byte  )

    UNSIGNED_INT                     java.lang.Integer              0 to 2147483647   (4 byte  )

    BIGINT                                   java.lang.Long              -9223372036854775807 to 9223372036854775807    8 byte

    UNSIGNED_LONG                  java.lang.Long               0 to 9223372036854775807

    TINYINT                                java.lang.Byte                 -128 to 127         1 byte

    UNSIGNED_TINYINT             java.lang.Byte                   0 to 127         1 byte

    SMALLINT                             java.lang.Short                 -32768 to 32767     2 byte

    UNSIGNED_SMALLINT           java.lang.Short                 0 to 32767     2 byte

    FLOAT                                    java. lang.Float                   -3.402823466 E + 38 to 3.402823466 E + 38  4 byte 

    UNSIGNED_FLOAT                java.lang.Float                     -3.402823466 E + 38 to 3.402823466 E + 38  4 byte 

    DOUBLE                         java.lang.Double  -1.7976931348623158 E+308  to 1.7976931348623158 E+308  8 byte

    UNSIGNED_DOUBLE                java.lang.Double                  0 to  1.7976931348623158 E + 308  8 byte           

     DECIMAL                                java.math.BigDecimal           38 digits 
    BOOLEAN                                 java.lang.Boolean
    TIME                                        java.sql.Time
    DATE                                        java.sql.Date
    TIMESTAMP                             java.sql.Timestamp
    UNSIGNED_TIME                      java.sql.Time
    UNSIGNED_DATE                      java.sql.Date
    UNSIGNED_TIMESTAMP          java.sql.Timestamp
    VARCHAR( precisionInt )           java.lang.String
    CHAR ( precisionInt )               java.lang.String
    BINARY ( precisionInt )         byte[]
    VARBINARY                               byte[]



     






  • 相关阅读:
    hdu 1372 Knight Moves
    hdu 1253 胜利大逃亡
    nyoj 737 石子合并 经典区间 dp
    nyoj 737 石子合并 http://blog.csdn.net/wangdan11111/article/details/45032519
    nyoj 55 懒省事的小明
    C++ STL priority_queue
    Code forces363D Renting Bikes
    性能测试分享:jmeter性能监控(一)
    性能测试培训:WebSocket协议的接口性能之Jmeter
    翻译一篇文章:It's Difficult to Grow a Test Developer(成为测试开发工程师的艰辛)
  • 原文地址:https://www.cnblogs.com/leeeee/p/7276391.html
Copyright © 2011-2022 走看看