summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorJean-Pierre Ledure <jp@ledure.be>2020-12-24 13:55:43 +0100
committerJean-Pierre Ledure <jp@ledure.be>2020-12-25 14:39:05 +0100
commit2a65be46f191f53177188a1f1827e71381a5983a (patch)
tree100cfd4c81c9a474c3e6b3875037676df7f752e1 /wizards
parentcc54ea4412b2561fc4eb57e40f6eeec66cc30c16 (diff)
Fix #118767 - Identify Firebird DBMS in DFunction()
Change-Id: I2fb3d414e3cd537654bbfae71fcdd80cf8ae4648 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108185 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jean-Pierre Ledure <jp@ledure.be>
Diffstat (limited to 'wizards')
-rw-r--r--wizards/source/access2base/Database.xba2
1 files changed, 1 insertions, 1 deletions
diff --git a/wizards/source/access2base/Database.xba b/wizards/source/access2base/Database.xba
index 2e361cecfc13..07b19ca0a2bd 100644
--- a/wizards/source/access2base/Database.xba
+++ b/wizards/source/access2base/Database.xba
@@ -1167,7 +1167,7 @@ Dim sProductName As String
sTarget = UCase(psFunction) &amp; &quot;(&quot; &amp; psExpr &amp; &quot;)&quot;
End If
sSql = &quot;SELECT &quot; &amp; sTarget &amp; &quot; AS &quot; &amp; sTempField &amp; &quot; FROM &quot; &amp; psDomain &amp; sWhere &amp; sOrderBy &amp; sLimit
- Case &quot;FIREBIRD&quot;
+ Case &quot;FIREBIRD&quot;, &quot;FIREBIRD (ENGINE12)&quot;
If psFunction = &quot;&quot; Then sTarget = &quot;FIRST 1 &quot; &amp; psExpr Else sTarget = UCase(psFunction) &amp; &quot;(&quot; &amp; psExpr &amp; &quot;)&quot;
sSql = &quot;SELECT &quot; &amp; sTarget &amp; &quot; AS &quot; &amp; sTempField &amp; &quot; FROM &quot; &amp; psDomain &amp; sWhere &amp; sOrderBy
Case Else &apos; Standard syntax - Includes HSQLDB