summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorJean-Pierre Ledure <jp@ledure.be>2020-12-24 13:55:43 +0100
committerAndras Timar <andras.timar@collabora.com>2020-12-28 11:30:10 +0100
commit187ce4ec14cc5fe4bee31d8051b34be903a34233 (patch)
tree5c0bfbbf581eac8bbee38f5846bc6c1ff27cad48 /wizards
parentcea2fce6406c1ee05850c0c465e361dede91edef (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