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  
  • 相关阅读:
    linux内核分析第八周理解进程调度时机跟踪分析进程调度与进程切换的过程
    linux内核分析第六周分析Linux内核创建一个新进程的过程
    Linux内核学习总结
    Linux内核分析第一周通过分析汇编代码理解计算机是如何工作的
    linux内核分析第五周分析system_call中断处理过程
    linux内核分析第三周跟踪分析Linux内核的启动过程
    转载:Understanding WPF Application Lifecycle
    Quick Sort 快速排序
    C#中的Immutable(不变的)
    一个lock和一个deadlock的例子
  • 原文地址:https://www.cnblogs.com/hnxxcxg/p/2941048.html
Copyright © 2011-2022 走看看