fcl-db: sqldb: fix trailing quote char

git-svn-id: trunk@30807 -
This commit is contained in:
lacak 2015-05-06 07:13:04 +00:00
parent 678133ac58
commit d0b365c99a

View File

@ -1773,7 +1773,7 @@ begin
begin
if (Where<>'') then
Where:=Where+' AND ';
Where:=Where+'('+FieldNameQuoteChars[0]+F.FieldName+FieldNameQuoteChars[0]+' = :'+F.FieldName+')';
Where:=Where+'('+FieldNameQuoteChars[0]+F.FieldName+FieldNameQuoteChars[1]+' = :'+F.FieldName+')';
end;
end;
if (Where='') then