https://bugs.documentfoundation.org/show_bug.cgi?id=143656
--- Comment #8 from Julien Nabet <[email protected]> --- At least for Tools/SQL the escape processing is done here: dbaccess/source/core/api/statement.cxx:480 Here's a part of gdb session. OStatement::execute (this=0x8661500, _rSQL="SELECT * FROM \"Person\" WHERE \"Name\" LIKE '%*'") at dbaccess/source/core/api/statement.cxx:480 480 MutexGuard aGuard(m_aMutex); (gdb) n 481 ::connectivity::checkDisposed(OComponentHelper::rBHelper.bDisposed); (gdb) n 483 disposeResultSet(); (gdb) n 485 OUString sSQL( impl_doEscapeProcessing_nothrow( _rSQL ) ); (gdb) p _rSQL $4 = "SELECT * FROM \"Person\" WHERE \"Name\" LIKE '%*'" (gdb) n 486 return m_xAggregateStatement->execute( sSQL ); (gdb) p sSQL $5 = "SELECT * FROM \"Person\" WHERE \"Name\" LIKE '%%'" -- You are receiving this mail because: You are the assignee for the bug.
