https://bugs.freedesktop.org/show_bug.cgi?id=36555

--- Comment #34 from Lionel Elie Mamane <[email protected]> 2011-11-20 07:14:48 
PST ---
Confirming that:

1) ADO -> SDBC driver is compiled and shipped
2) ADO -> SDBC driver fails to start

Compare the following Basic macros:

Sub ChkODBC
    Dim foo as Object
    foo = CreateUnoService("com.sun.star.comp.sdbc.ODBCDriver")
    If IsNull(foo) Then
        MsgBox "Got NULL"
    Else
        MsgBox "Success"
    End If
End Sub

Sub ChkADO
    Dim foo as Object
    foo = CreateUnoService("com.sun.star.comp.sdbc.ado.ODriver")
    If IsNull(foo) Then
        MsgBox "Got NULL"
    Else
        MsgBox "Success"
    End If
End Sub

ChkODBC succeeds, but the CreateUnoService fails for ChkADO. Error message:
 file:///c:/Program%20Friles/LibreOffice/%203.4/program/../program/adomi.dll:
cannot get factory of demanded implementation:
com.sun.star.comp.sdbc.ado.ODriver

So at least LO finds the right .dll and tries to use that right dll, but the
dll itself errors out?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to