How do you set a column to NULL in a parameter?
I need to be able to set an int column in SQL2005 to null once in a while, within a parameter construct, i.e.
cmd.Parameters.Add(New SqlParameter("@fkSecondLevelPageID", 'null'))
I've tried 'null', vbNull and "", but none of them do the job.
Thanks!
Aaron
|