Does anybody have any suggestions for how to update a record in an SQL table, specifically an "image" data type field?
Here's my code . . . BUT IT DOESN'T WORK! ARGH!!!!! I'm getting desperate!
Here's my code . . . BUT IT DOESN'T WORK! ARGH!!!!! I'm getting desperate!
Code:
spSaveCpnScanImagesTest
@Mfr int,
@CpnOffer int,
@RptOffer int,
@CpnFrontImg image,
@CpnBackImg image
update CpnScan
set CpnFrontImg = @CpnFrontImg,
CpnBackImg = @CpnBackImg
where Mfr = @Mfr and
CpnOffer = @CpnOffer and
RptOffer = @RptOffer
[\code]
Now, I know the first thing you're going to ask is . . . Is there a matching record in the database. Yes, there is.
I am calling this sp from C# and can insert using this same logic, but when I try to update the same record, it does not work.
HELP! PLEASE!
Thank you!
Stay Cool Ya'll! [smile2]
-- Kristin