如何用Query的参数向表格中插入NULL值。(100分)

  • 主题发起人 主题发起人 pentnt
  • 开始时间 开始时间
P

pentnt

Unregistered / Unconfirmed
GUEST, unregistred user!
如何用Query的参数向表格中插入NULL值或者用Query的参数
更新一个值为NULL值。
 
不填参数,是否缺省就为null?
 
好象不行
 
TParam.Clear Sets the Value of the parameter to NULL.
 
用参数:

TParam.Value:= NULL

不用参数都可以:

update 表名 set 列名=NULL where ......

insert into 表名 values(...,...,NULL,...)

直接用null表示
 
接受答案了.
 
后退
顶部