P pentnt Unregistered / Unconfirmed GUEST, unregistred user! 2000-02-14 #1 如何用Query的参数向表格中插入NULL值或者用Query的参数 更新一个值为NULL值。
X xWolf Unregistered / Unconfirmed GUEST, unregistred user! 2000-02-16 #4 TParam.Clear Sets the Value of the parameter to NULL.
P Pipi. Unregistered / Unconfirmed GUEST, unregistred user! 2000-02-16 #5 用参数: TParam.Value:= NULL 不用参数都可以: update 表名 set 列名=NULL where ...... insert into 表名 values(...,...,NULL,...) 直接用null表示
用参数: TParam.Value:= NULL 不用参数都可以: update 表名 set 列名=NULL where ...... insert into 表名 values(...,...,NULL,...) 直接用null表示