User: hr Date: 06/06/19 18:10:43 Modified: /dba/connectivity/source/drivers/adabas/ BStatement.cxx
Log: INTEGRATION: CWS warnings01 (1.6.30); FILE MERGED 2005/11/16 12:58:50 fs 1.6.30.1: #i57457# warning free code File Changes: Directory: /dba/connectivity/source/drivers/adabas/ =================================================== File [changed]: BStatement.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/adabas/BStatement.cxx?r1=1.6&r2=1.7 Delta lines: +9 -3 ------------------- --- BStatement.cxx 8 Sep 2005 05:23:55 -0000 1.6 +++ BStatement.cxx 20 Jun 2006 01:10:41 -0000 1.7 @@ -41,6 +41,9 @@ #ifndef _COM_SUN_STAR_LANG_DISPOSEDEXCEPTION_HPP_ #include <com/sun/star/lang/DisposedException.hpp> #endif +#ifndef _DBHELPER_DBEXCEPTION_HXX_ +#include <connectivity/dbexception.hxx> +#endif using namespace connectivity::adabas; @@ -62,17 +65,20 @@ return new OAdabasResultSet(m_aStatementHandle,this,m_aSelectColumns); } // ----------------------------------------------------------------------------- -void OAdabasStatement::setUsingBookmarks(sal_Bool _bUseBookmark) +void OAdabasStatement::setUsingBookmarks(sal_Bool /*_bUseBookmark*/) { + ::dbtools::throwFeatureNotImplementedException( "bookmarks", *this ); // adabas doesn't support bookmarks } // ----------------------------------------------------------------------------- -void OAdabasStatement::setResultSetConcurrency(sal_Int32 _par0) +void OAdabasStatement::setResultSetConcurrency(sal_Int32 /*_par0*/) { + ::dbtools::throwFeatureNotImplementedException( "non-standard result set concurrencies: ", *this ); } // ----------------------------------------------------------------------------- -void OAdabasStatement::setResultSetType(sal_Int32 _par0) +void OAdabasStatement::setResultSetType(sal_Int32 /*_par0*/) { + ::dbtools::throwFeatureNotImplementedException( "non-standard result set types: ", *this ); } // ----------------------------------------------------------------------------- sal_Bool SAL_CALL OAdabasStatement::execute( const ::rtl::OUString& sql ) throw(SQLException, RuntimeException) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
