Is "search" an actual column name in your database? It has to be, otherwise you'll get an error. The correct syntax for a SQL query would be somthing like:
SELECT * FROM TestTable where DateTested = '08/26/03'
where TestTable is the table name and DateTested is a valid column in the table.
Also, you should always list the entire error code and not some abbreviation like "-2147...". Secondly, there are numerous SQL tutorials on the net and in printed form. You might want to do a web search.