Viewing 3 posts - 1 through 3 (of 3 total)
I tested i and it doed get through, so I stand corrected. I have not been able to get anything to execure thus far though
July 14, 2010 at 5:04 pm
#1193186
If you use the .Net SQLParamater, it will not allow that value
July 14, 2010 at 9:38 am
#1192917
Another option is to use dynamic SQL in your stored procedure:
--exec UpdateContact 30, 'Joe','Blow',NULL
alter PROCEDURE UpdateContact
@ContactID int
,@FirstName nvarchar(30)
...
July 14, 2010 at 1:09 am
#1192591