Hi I'm trying to filter data fields from a paradox database table (from information system on programmed on delphi)...
I successfully made the connection with the connection string:
Provider =Microsoft.Jet.OLEDB.4.0; Data Source =c:\bddir; Extended Properties =Paradox 5.x;
I can even successfully execute queries like select * from mytable
But when I'm trying to do queries like:
SELECT * FROM entries WHERE date = '2011-1-1'
thru a c#
application with the cxstr
above.. and it said: Data type mismatch in criteria expression
any solutions?? I tried things like StrToDate
or QuotedStr
and it didn't work...
:(