[Libreoffice-bugs] [Bug 107579] Native mysql connector extension fails to be loaded
bugzilla-daemon at bugs.documentfoundation.org
bugzilla-daemon at bugs.documentfoundation.org
Wed May 3 09:43:12 UTC 2017
https://bugs.documentfoundation.org/show_bug.cgi?id=107579
--- Comment #3 from Alex Thurgood <iplaw67 at tuta.io> ---
This warning appears to be thrown by this block:
if ( !m_bAttemptedLoadCppConn )
133 {
134 const rtl::OUString sModuleName(CPPCONN_LIB);
135 m_hCppConnModule = osl_loadModuleRelative( &thisModule,
sModuleName.pData, 0 );
136 m_bAttemptedLoadCppConn = true;
137 }
138
139 // attempted to load - was it successful?
140 if ( !m_hCppConnModule )
141 {
142 OSL_FAIL( "MysqlCDriver::impl_initCppConn_lck_throw: could not
load the " CPPCONN_LIB " library!");
143 throw SQLException(
144 "Unable to load the " CPPCONN_LIB " library.",
145 *this,
146 rtl::OUString( "08001" ), // "unable to connect"
147 0,
148 Any()
149 );
150 }
in mysqlc_driver.cxx
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/libreoffice-bugs/attachments/20170503/3011e6b6/attachment.html>
More information about the Libreoffice-bugs
mailing list