https://bugs.documentfoundation.org/show_bug.cgi?id=117856

Drew Jensen <drewjensen.in...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|DUPLICATE                   |---
             Status|RESOLVED                    |REOPENED

--- Comment #5 from Drew Jensen <drewjensen.in...@gmail.com> ---
Ok I reopened this because it is not really a duplicate of the other issue,
although it is the same bug but in different code.

The migration assistant today creates initial firebird metadata with name
parameter substitution turned off.

Grabbing the little basic script from the closed issue for firebird generally:
Option Explicit
Sub ensureConnection()
        Dim DBDocUI as Object
        on error resume next
        'XRay ThisComponent
        DBDocUI = ThisDatabaseDocument.currentController
        if not DBDocUI.isConnected then
                DBDocUI.connect
        end if
        on error goto 0
End Sub

Sub Main
        ensureConnection()
        ThisDatabaseDocument.DataSource.Settings.ParameterNameSubstitution =
true
End Sub

and running that against the migrated base files does indeed fix this problem,
and the forms w/regard to main/sub form access work.

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to