adodb .FIND question

Posted by every_answer_gets_a_point on Stack Overflow See other posts from Stack Overflow or by every_answer_gets_a_point
Published on 2010-05-14T15:54:31Z Indexed on 2010/05/14 16:04 UTC
Read the original article Hit count: 218

Filed under:
|
|
|
|

i am using excel to connect to a mysql database

i am doing this:

rs.Find "rowid='105'"
If Not rs.EOF Then cn.Execute "delete  from batchinfo where rowid='105'"

and it works well

however, i need to be able to match data on multiple columns for example like this:

rs. find "rowid='105'" and "something='sometext'" and "somethingelse='moretext'"

i need to know whether or not rs.find matched ALL of the data.

how can i do this?

according to this i can't: http://articles.techrepublic.com.com/5100-10878_11-1045830.html#

however perhaps there's a way i can rs.execute "some select statement" can someone help with this?

would this do the trick for me and then i would check EOF:

rs.Filter "LastName='Adams' and FirstName='Lamont'"

© Stack Overflow or respective owner

Related posts about adodb

Related posts about mysql