User: hr Date: 2006/08/15 03:28:43 Modified: dba/connectivity/source/drivers/jdbc/Connection.cxx
Log: INTEGRATION: CWS dba30 (1.22.8); FILE MERGED 2006/07/19 10:17:24 fs 1.22.8.4: RESYNC: (1.24-1.25); FILE MERGED 2006/03/21 15:17:52 fs 1.22.8.3: RESYNC: (1.23-1.24); FILE MERGED 2005/09/28 11:59:04 fs 1.22.8.2: RESYNC: (1.22-1.23); FILE MERGED 2005/04/06 07:10:24 fs 1.22.8.1: #i46768# some assertions on the type of connection properties File Changes: Directory: /dba/connectivity/source/drivers/jdbc/ ================================================= File [changed]: Connection.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/jdbc/Connection.cxx?r1=1.25&r2=1.26 Delta lines: +5 -5 ------------------- --- Connection.cxx 20 Jun 2006 01:33:46 -0000 1.25 +++ Connection.cxx 15 Aug 2006 10:28:41 -0000 1.26 @@ -699,7 +699,7 @@ java_lang_Throwable::getMyClass(); ::rtl::OUString aStr; - pBegin->Value >>= aStr; + OSL_VERIFY( pBegin->Value >>= aStr ); OSL_ASSERT( aStr.getLength()); if ( aStr.getLength() ) { @@ -725,19 +725,19 @@ } else if(!pBegin->Name.compareToAscii("IsAutoRetrievingEnabled")) { - pBegin->Value >>= _rbAutoRetrievingEnabled; + OSL_VERIFY( pBegin->Value >>= _rbAutoRetrievingEnabled ); } else if(!pBegin->Name.compareToAscii("AutoRetrievingStatement")) { - pBegin->Value >>= _rsGeneratedValueStatement; + OSL_VERIFY( pBegin->Value >>= _rsGeneratedValueStatement ); } else if(!pBegin->Name.compareToAscii("ParameterNameSubstitution")) { - pBegin->Value >>= _bParameterSubstitution; + OSL_VERIFY( pBegin->Value >>= _bParameterSubstitution ); } else if(!pBegin->Name.compareToAscii("IgnoreDriverPrivileges")) { - pBegin->Value >>= _bIgnoreDriverPrivileges; + OSL_VERIFY( pBegin->Value >>= _bIgnoreDriverPrivileges ); } } } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
