mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-04 18:50:37 +02:00
' * Do not use a space as FieldNamesQuoteChar but an empty string, so that parameters are parsed correctly
git-svn-id: trunk@12640 -
This commit is contained in:
parent
6fc3f2e809
commit
349ff010a1
@ -1361,7 +1361,7 @@ end;
|
||||
|
||||
Procedure TCustomSQLQuery.ApplyRecUpdate(UpdateKind : TUpdateKind);
|
||||
|
||||
var FieldNamesQuoteChar : char;
|
||||
var FieldNamesQuoteChar : string;
|
||||
|
||||
procedure InitialiseModifyQuery(var qry : TCustomSQLQuery; aSQL: String);
|
||||
|
||||
@ -1458,7 +1458,7 @@ begin
|
||||
if sqQuoteFieldnames in TSQLConnection(DataBase).ConnOptions then
|
||||
FieldNamesQuoteChar := '"'
|
||||
else
|
||||
FieldNamesQuoteChar := ' ';
|
||||
FieldNamesQuoteChar := '';
|
||||
|
||||
case UpdateKind of
|
||||
ukModify : begin
|
||||
|
Loading…
Reference in New Issue
Block a user