Re: Searching a Memo Field
If your database for dummies book does not cover that part, throw it away.
set mRS = mDB.OpenRecordset("select * from codeitems where example like ""*Bookmark*""")
Tom Cannaerts
[email protected]
Programming today is a race between software engineers striving to build bigger and better idot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning -- Rich Cook
Re: Searching a Memo Field
Actually my book does cover the "Like" verb. I was hoping for something a little more sophisticated though. My memo field data could include 30-40Kb per record so searching using "Like" may take a while.
I never throw out books. At the very least I donate them to a library.
'
Thanks guys,
John G
Re: Searching a Memo Field
Ok, LIKE can be slow, but I don't think there actually is a fast way of doing something like this. I don't thing processing the entire recordset will be any faster, hence you still need to write it yourself.
Tom Cannaerts
[email protected]
Programming today is a race between software engineers striving to build bigger and better idot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning -- Rich Cook