https://bugs.freedesktop.org/show_bug.cgi?id=42543
--- Comment #16 from Julien Nabet <[email protected]> 2012-01-29 02:54:58 PST --- (In reply to comment #15) > The first bt (attachment 56205 [details]) is interesting: > > dbtools::throwGenericSQLException (_rMsg="There exists no query named > \"Adresse\"." ...) > > > Some code tries to use a query named: > "Adresse". > insted of just: > "Adresse" > > So we have to hunt where that extra dot comes from and hopefully this will > solve this bug! I put a breakpoint on RowSet just before the message : (gdb) b RowSet.cxx:2382 Breakpoint 1 at 0x7f7c39cc31d5: file /home/julien/compile-libreoffice/libo/dbaccess/source/core/api/RowSet.cxx, line 2382. (gdb) c ... Breakpoint 1, dbaccess::ORowSet::impl_buildActiveCommand_throw (this=0x353d360) at /home/julien/compile-libreoffice/libo/dbaccess/source/core/api/RowSet.cxx:2382 2382 sMessage.SearchAndReplaceAscii( "$table$", m_aCommand ); (gdb) print m_aCommand $1 = "Adresse" (gdb) n 2383 throwGenericSQLException(sMessage,*this); (gdb) print sMessage $2 = "There exists no query named \"Adresse\"." So m_aCommand seems ok, it's just the message which shows this "." in extra. BTW : I got a log of segmentation faults where trying to gdb the report part. -- 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
