JackQu的程序员博客

欢迎来的我Blog.这里记录工作学习的点滴,愿与大家分享。欢迎大家共同交流 。

导航

循环数据集字段赋默认值

 

              for i:=0 to FieldCount-1 do
                if Fields[i].IsNull then
                  case Fields[i].DataType of
                    ftInteger          : Fields[i].AsInteger:=0;
                    ftFloat, ftCurrency: Fields[i].AsCurrency:=0.00;
                    ftString           : Fields[i].AsString:='';
                    ftDateTime         : ;
                  end;

 

posted on 2016-10-21 17:01  Qcj  阅读(287)  评论(0编辑  收藏  举报