I already search the forum for SQLite examples but alas there aren't too many.
In my program I have an Edit-box where the user can enter a value to be searched in the SQLite database. When found the dbgrid should be positioned on the found record.
I used following construction to do a search:
tblAdressen.Filter := 'Lower(VolleNaam) like ''%' + LowerCase(EdtZoeken.Text) + '%''';
if not tblAdressen.FindFirst
then begin
..........
end;
Unfortunately every search comes back empty although I know for sure the value is in the database.
Am I using a wrong syntax here?
How to search the SQLite database and get the dbgrid positioned on the found record?
Jan