I use these Delphi statements to store data in a SQLite table :
FDQry.SQL.Text := 'INSERT INTO Test (Var1, Var2) VALUES (1, "$£¥€")';
FDQry.ExecSQL;
Then the SQLite table Test shows : Var2 = ‘$£¥€’
But a Delphi DBMemo shows : Var2 = ‘$£¥€’
What am I doing wrong ?