Who can help me to search?
Hi.
I want to write some codes that make a search for my database in vb if you know some thing please help me.
thanks.
# 1 Re: Who can help me to search?
What kind of database is it? How are you connecting to it (DAO, ADO, etc)?
# 4 Re: Who can help me to search?
your problem is with the SQL command itself or with the way to execute the command ?
u have allready a connection with a record called "rs" say ,
use this : rs.open "PUT_HERE_A_SQL_COMMAND"
but if you r searching about the sql command so u need to make a small search in this forum or in the web about how to search using sql commands ..
it's generally some thing like that :
SELECT * FROM tabel WHERE field LIKE %searched_word_here%
and then the rs will conatins a table of all results .
Amahdy at 2007-11-11 17:26:08 >
