Paradox的时间格式'mm/dd/yy',试试看!

解决方案 »

  1.   

    bruther ,what about others ,tell me all
      

  2.   

      设定为table1 :
        if table1.Fields[x].DataType=ftTime then
         begin
          .
          .
          .
         end;
      

  3.   

    for i:=0 to fieldcount-1 do 
    case fields[i].datatype of
    fttime:fields[i].asdatetime:=time;
    ftstring:fields[i].asstring:=...;
    ftdate:fields[i].asdatetime:=...;
    end;
    这样应该可以
    在SQL语句中应该当成字符串来写
    比如Where 字段名='01/02/99'
    以此类推