I have a stored procedure to update a column for a given value. I have the following sql in the stored procedure
update TicketingWillcallLocations
set InternetWillCallAllowed = @willCallFlag
where willcallId = @willCallId
@willCallFlag - .NET type string and DB type is char(1)
@willCallId - .NET type is int and DB type is int (Note: It is an identity key in the table)
While I debug I see the value('Y' or 'N') sent from the program, but the value doesn't seem to be passed correctly to the stored procedure since it updates the willcallflag to empty string after the stored procedure is called.
Any help would be greatly appreciated.
Thanks,
Santhi