Forum Moderators: open

Message Too Old, No Replies

Saech key not found error

Access memo fields

         

aspdaddy

2:32 pm on Mar 8, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



>Search key not found error

This error is caused when memos fields have around 2000 characters in, and the records are updated, does anyone know of a fix.

thanks.

TheDave

11:59 pm on Mar 9, 2004 (gmt 0)

10+ Year Member



Are you updating through a query or recordset? Try the other way ;)

cm.CommandText = "UPDATE [blah] SET [blah]=blah WHERE.."
cm.Execute

or

rs.Open "SELECT [blah] FROM [blah] WHERE...", cn, 3, 3
rs("blah") = blah
rs.Update

Failing that, perhaps instead of updating the data, you read it, delete it, then re-insert it?