If you have information stored in a database for example Titles, descriptions, How would you go about linking a keyword search to the database?
Printable View
If you have information stored in a database for example Titles, descriptions, How would you go about linking a keyword search to the database?
If you want to do this using a select statment you could try:
Depending on the database you are using, you may need to change the % signs. I think access uses * and SQL server uses %.Code:"SELECT * FROM tbl WHERE fld like %Criteria%"
Hope this helps