Browse Source

* suggested patch from DiBo33 <[email protected]> to allow := in mysql queries

git-svn-id: trunk@9619 -
michael 17 years ago
parent
commit
9475843939
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/fcl-db/src/base/dsparams.inc

+ 1 - 1
packages/fcl-db/src/base/dsparams.inc

@@ -288,7 +288,7 @@ begin
           if p^=':' then
           begin // find parameter name
             Inc(p);
-            if p^=':' then  // ignore ::, since some databases uses this as a cast (wb 4813)
+            if p^ in [':','='] then  // ignore ::, since some databases uses this as a cast (wb 4813)
             begin
               IgnorePart := True;
               Inc(p);