G
Greg Smith
Hi, I am attempting to updata a SQL Server record using the stored
procedure's UpdateCommand. Everything works fine if all fields are full,
but if a user clears out a textBox that originally contained a number in it,
then the update bombs out. The field in the table is setup to accept nulls.
What is the proper syntax to store it back?
da.UpdateCommand.Parameter[1].value = ???? <a null> ?????
Any help is greatly appreciated.
procedure's UpdateCommand. Everything works fine if all fields are full,
but if a user clears out a textBox that originally contained a number in it,
then the update bombs out. The field in the table is setup to accept nulls.
What is the proper syntax to store it back?
da.UpdateCommand.Parameter[1].value = ???? <a null> ?????
Any help is greatly appreciated.