To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=81095


User fs changed the following:

                What    |Old value                 |New value
================================================================================
             Assigned to|fs                        |sb
--------------------------------------------------------------------------------




------- Additional comments from [EMAIL PROTECTED] Thu Mar  6 13:27:21 +0000 
2008 -------
fs->sb:
Another incarnation of the already-encountered-elsewhere bug in one of our 
bridges.
Basically, the code is as follows:
  ORowSet::updateRow() throw ( SQLException )
  {
    checkSomething();
  }
  void ORowSet::checkSomething()
  {
    if ( !something )
    {
      Any aException( NULL, ::cppu::UnoType< RowSetVetoException >::get() );
      SQLException* pException = static_cast< SQLException* >(
        aException.pData );
      *pException = buildSQLEx();
      ::cppu::throwException( aException );
    }
  }

That is, throwException is used to raise a RowSetVetoException, which is derived
from SQLException. However, this exception does not leave the updateRow method -
instead the process dies here with an "unexpected" signal.

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to