I have a range of .asp pages developed in Frontpage which
filter results of a query down to the one the user wishes
to update. Everything works without error. However, when I
look at the underlying Access db, all of the memo fields
(some of which contained data) have been overwritten with
the default value.
All other fields: Dates, Boolean, Text & Numbers update
correctly. There just appears to be an issue with the Memo
fields.
My custom query is similar to below where ProductName is a
Text field, ProductCost is a Number field, InStock is a
Boolean and ProdComments is a Memo field;
UPDATE Product SET [ProductName]=':roductName::',
[ProductCost]=:roductCost::, [InStock]=::InStock,
[ProdComments]=':rodComments::' WHERE [ProductId]
=':roductId::'
Any help, much appreciated
filter results of a query down to the one the user wishes
to update. Everything works without error. However, when I
look at the underlying Access db, all of the memo fields
(some of which contained data) have been overwritten with
the default value.
All other fields: Dates, Boolean, Text & Numbers update
correctly. There just appears to be an issue with the Memo
fields.
My custom query is similar to below where ProductName is a
Text field, ProductCost is a Number field, InStock is a
Boolean and ProdComments is a Memo field;
UPDATE Product SET [ProductName]=':roductName::',
[ProductCost]=:roductCost::, [InStock]=::InStock,
[ProdComments]=':rodComments::' WHERE [ProductId]
=':roductId::'
Any help, much appreciated