While "rebuilding" a simple program using a DBase file into one using a SqLite file I could not find how to open the file. If I enter the file path in the filepath of the properties of the Object Inspector the data are shown in the grid. But using the
procedure TForm1.AOpenExecute(Sender: TObject);
begin
With ODDBA do
if Execute then
Openfile(Filename);
end;
as used in the dBase program, I get error>> unit1.pas(88,15) Error: Identifier not found "Openfile"
I looked through this Forum and the SQL documentation but could not find the correct termonology for SQLite.
Would appreciate your help.
Bert