Help!
I also need help with the Update command. I have created a FORM,
let's say it has several fields: field1, field2, field3, etc...
I want to issue an update to the database, using ALL the field values as
the input for the SQL update command... example:
UPDATE MyReport
SET Information = '::field1::' + '::field2::' + '::field3'
WHERE Member = 'john'
Here is the Problem! - I run out of room in the "SET" information row
and I need to append the information on a second line? Example:
UPDATE MyReport
SET Information = '::field1::' + '::field2::',
+ '::field3' + '::field4::' + '::field5::'
WHERE Member = 'john'
I get an errorrrrrrrrrrrrrrrrrrrrrrr! - Please HELP!!!!!!