I've got a form for a internal site that is supposed to be for the user to put notes about the process they are working on. But it appears that SQL has a problem when an INSERT value is longer than 255 characters.
Unluckily, 255 isn't enough most of the time.
I've re-written my ASP page to take the value of that field, and if it's more than 255 chop it into multiple variables of 255 characters.
So I have chop1 - chop4, lets say. Each one contains 255 (last one may be less) characters.
I can perform the INSERT using chop1 for that memo field, but can't append the chop2-4 to it. An UPDATE just over writes it and I havn't seen a method yet for just appending a variable to the end of the data in a field.
Still looking through some SQL/ASP books, but if anyone has any suggestions, that would be great.
FYI inserting into a Foxpro Table.
ChuckG
Unluckily, 255 isn't enough most of the time.
I've re-written my ASP page to take the value of that field, and if it's more than 255 chop it into multiple variables of 255 characters.
So I have chop1 - chop4, lets say. Each one contains 255 (last one may be less) characters.
I can perform the INSERT using chop1 for that memo field, but can't append the chop2-4 to it. An UPDATE just over writes it and I havn't seen a method yet for just appending a variable to the end of the data in a field.
Still looking through some SQL/ASP books, but if anyone has any suggestions, that would be great.
FYI inserting into a Foxpro Table.
ChuckG