D7 - MSSQL
I have a table with a numeric integer field that can accept Null
(Table -> T1 Field -> F1)
My elementary query is:
update T1 set F1 =
aram
and then in my code:
query.ParamByName('param').AsInteger := 10;
query.Excecute;
It works fine.
But, how can i do if i want to set F1 to Null?
How must write ?
query.ParamByName('param').????? = Null ????
thanks to all
castore
I have a table with a numeric integer field that can accept Null
(Table -> T1 Field -> F1)
My elementary query is:
update T1 set F1 =
and then in my code:
query.ParamByName('param').AsInteger := 10;
query.Excecute;
It works fine.
But, how can i do if i want to set F1 to Null?
How must write ?
query.ParamByName('param').????? = Null ????
thanks to all
castore