zoukankan      html  css  js  c++  java
  • MSSQL与Delphi类型对照一览表

    Value           Sql                         Description

    ftUnknown                                    Unknown or undetermined
    ftString        char                        Character or string field
    ftSmallint      smallint                    16-bit integer field
    ftInteger       int                         32-bit integer field
    ftWord          tinyint                     16-bit unsigned integer field
    ftBoolean       bit                         Boolean field
    ftFloat         float、real                 Floating-point numeric field
    ftCurrency                                  Money field
    ftBCD           decimal、money、            Binary-Coded Decimal field
                    numeric、smallmoney
    ftDate                                      Date field
    ftTime                                      Time field
    ftDateTime      datetime、smalldatetime     Date and time field
    ftBytes         binary、timestamp           Fixed number of bytes (binary storage)
    ftVarBytes      varbinary                   Variable number of bytes (binary storage)
    ftAutoInc                                   Auto-incrementing 32-bit integer counter field
    ftBlob          image                       Binary Large OBject field
    ftMemo          text                        Text memo field
    ftGraphic                                   Bitmap field
    ftFmtMemo                                   Formatted text memo field
    ftParadoxOle                                Paradox OLE field
    ftDBaseOle                                  dBASE OLE field
    ftTypedBinary                               Typed binary field
    ftCursor                                    Output cursor from an Oracle stored procedure (TParam only)
    ftFixedChar                                 Fixed character field
    ftWideString    nchar、nvarchar             Wide string field
    ftLargeInt      bigint                      Large integer field
    ftADT                                       Abstract Data Type field

    ftArray                                     Array field
    ftReference                                 REF field
    ftDataSet                                   DataSet field
    ftOraBlob                                   BLOB fields in Oracle 8 tables
    ftOraClob                                   CLOB fields in Oracle 8 tables
    ftVariant       sql_variant                 Data of unknown or undetermined type
    ftInterface                                 References to interfaces (IUnknown)
    ftIDispatch                                 References to IDispatch interfaces
    ftGuid          uniqueidentifier            globally unique identifier (GUID) values  
  • 相关阅读:
    pytorch-卷积基本网络结构-提取网络参数-初始化网络参数
    pytorch-mnist神经网络训练
    python 面对对象 类(继承, 多态)
    注意机制CBAM
    python sqlalchemy 进行 mysql 数据库操作
    python pymysql 连接 mysql数据库进行操作
    mysql数据库基础
    python正则表达式解析(re)
    python 装饰器 (test = submit(test))
    对opencv读取的图片进行像素调整(1080, 1920) 1.cv2.VideoCapture(构造图片读取) 2.cv2.nameWindow(构建视频显示的窗口) 3.cv2.setWindowProperty(设置图片窗口的像素) 4.video_capture(对图片像素进行设置)
  • 原文地址:https://www.cnblogs.com/hnxxcxg/p/2941048.html
Copyright © 2011-2022 走看看