für
MySQL hatte ich mir folgende Funktion programmiert:
Delphi-Quellcode:
function Addslashes(str: string): string;
begin
str:=StringReplace(str,'\', '\\',[rfReplaceAll,rfIgnoreCase]);
str:=StringReplace(str,'''', '\''',[rfReplaceAll,rfIgnoreCase]);
str:=StringReplace(str,'"', '\"',[rfReplaceAll,rfIgnoreCase]);
result:=str;
end;
Diese hatte dann vor die Zeichen ",'.\ einen
\ vorangestellt.
ApolloSQL versteht dies allerdings nicht.