I am writing to my database from an Active Server Page on our website using a stored procedure. All values are being written to the database successully. However, I have a comments field that is a varchar 2500 that I need to maintain the existing value and then add any new value that is provided. I've done this previously using
UPDATE tablename SET fieldname1 = (fieldname1 + @variable) where fieldname2 = @AnotherVariable
This time it is not working. I have checked permissions and everything is where it should be. All other information is being written but this.
Any help is greatly appreciated.
Thanks
Marianne
UPDATE tablename SET fieldname1 = (fieldname1 + @variable) where fieldname2 = @AnotherVariable
This time it is not working. I have checked permissions and everything is where it should be. All other information is being written but this.
Any help is greatly appreciated.
Thanks
Marianne