From af551c8d53a76eabe9abda82d88afec945394829 Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Tue, 26 Aug 2014 18:06:33 +0000 Subject: [PATCH] PostgreSQL does not need a LIKE clause tail like MSSQL does. --- source/dbconnection.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/dbconnection.pas b/source/dbconnection.pas index 5046cb73..da1d8138 100644 --- a/source/dbconnection.pas +++ b/source/dbconnection.pas @@ -4696,7 +4696,7 @@ function TDBConnection.LikeClauseTail: String; begin case FParameters.NetTypeGroup of ngMSSQL: Result := ' ESCAPE ' + EscapeString('\'); - ngMySQL: Result := ''; + else Result := ''; end; end;