User: ihi     
Date: 2006/08/28 07:52:24

Modified:
   dba/connectivity/source/drivers/evoab2/NPreparedStatement.cxx

Log:
 INTEGRATION: CWS dba205a (1.4.72); FILE MERGED
 2006/07/27 09:59:52 fs 1.4.72.1: warning-free code (in preparation of #i55701#

File Changes:

Directory: /dba/connectivity/source/drivers/evoab2/
===================================================

File [changed]: NPreparedStatement.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/evoab2/NPreparedStatement.cxx?r1=1.4&r2=1.5
Delta lines:  +49 -96
---------------------
--- NPreparedStatement.cxx      28 Feb 2006 10:33:45 -0000      1.4
+++ NPreparedStatement.cxx      28 Aug 2006 14:52:21 -0000      1.5
@@ -56,6 +56,9 @@
 #ifndef _CONNECTIVITY_PROPERTYIDS_HXX_
 #include "propertyids.hxx"
 #endif
+#ifndef _DBHELPER_DBEXCEPTION_HXX_
+#include <connectivity/dbexception.hxx>
+#endif
 
 using namespace connectivity::evoab;
 using namespace com::sun::star::uno;
@@ -71,9 +74,9 @@
 
 OEvoabPreparedStatement::OEvoabPreparedStatement( OEvoabConnection* 
_pConnection, const ::rtl::OUString& sql)
        :OStatement_BASE2(_pConnection)
-       ,m_bPrepared(sal_False)
-       ,m_sSqlStatement(sql)
        ,m_nNumParams(0)
+       ,m_sSqlStatement(sql)
+       ,m_bPrepared(sal_False)
 {
 }
 // 
-----------------------------------------------------------------------------
@@ -156,10 +159,9 @@
 }
 // -------------------------------------------------------------------------
 
-void SAL_CALL OEvoabPreparedStatement::setString( sal_Int32 parameterIndex, 
const ::rtl::OUString& x ) throw(SQLException, RuntimeException)
+void SAL_CALL OEvoabPreparedStatement::setString( sal_Int32 
/*parameterIndex*/, const ::rtl::OUString& /*x*/ ) throw(SQLException, 
RuntimeException)
 {
-       ::osl::MutexGuard aGuard( m_aMutex );
-       checkDisposed(OStatement_BASE::rBHelper.bDisposed);
+    ::dbtools::throwFunctionNotSupportedException( "XParameters::setString", 
*this );
 }
 // -------------------------------------------------------------------------
 
@@ -182,174 +184,131 @@
 }
 // -------------------------------------------------------------------------
 
-void SAL_CALL OEvoabPreparedStatement::setBoolean( sal_Int32 parameterIndex, 
sal_Bool x ) throw(SQLException, RuntimeException)
+void SAL_CALL OEvoabPreparedStatement::setBoolean( sal_Int32 
/*parameterIndex*/, sal_Bool /*x*/ ) throw(SQLException, RuntimeException)
 {
-       ::osl::MutexGuard aGuard( m_aMutex );
-       checkDisposed(OStatement_BASE::rBHelper.bDisposed);
+    ::dbtools::throwFunctionNotSupportedException( "XParameters::setBoolean", 
*this );
                
 }
 // -------------------------------------------------------------------------
-void SAL_CALL OEvoabPreparedStatement::setByte( sal_Int32 parameterIndex, 
sal_Int8 x ) throw(SQLException, RuntimeException)
+void SAL_CALL OEvoabPreparedStatement::setByte( sal_Int32 /*parameterIndex*/, 
sal_Int8 /*x*/ ) throw(SQLException, RuntimeException)
 {
-       ::osl::MutexGuard aGuard( m_aMutex );
-       checkDisposed(OStatement_BASE::rBHelper.bDisposed);
-               
-
+    ::dbtools::throwFunctionNotSupportedException( "XParameters::setByte", 
*this );
 }
 // -------------------------------------------------------------------------
 
-void SAL_CALL OEvoabPreparedStatement::setDate( sal_Int32 parameterIndex, 
const Date& aData ) throw(SQLException, RuntimeException)
+void SAL_CALL OEvoabPreparedStatement::setDate( sal_Int32 /*parameterIndex*/, 
const Date& /*aData*/ ) throw(SQLException, RuntimeException)
 {
-       ::osl::MutexGuard aGuard( m_aMutex );
-       checkDisposed(OStatement_BASE::rBHelper.bDisposed);
-               
+    ::dbtools::throwFunctionNotSupportedException( "XParameters::setDate", 
*this );
 }
 // -------------------------------------------------------------------------
 
-
-void SAL_CALL OEvoabPreparedStatement::setTime( sal_Int32 parameterIndex, 
const Time& aVal ) throw(SQLException, RuntimeException)
+void SAL_CALL OEvoabPreparedStatement::setTime( sal_Int32 /*parameterIndex*/, 
const Time& /*aVal*/ ) throw(SQLException, RuntimeException)
 {
-       ::osl::MutexGuard aGuard( m_aMutex );
-       checkDisposed(OStatement_BASE::rBHelper.bDisposed);
-               
+    ::dbtools::throwFunctionNotSupportedException( "XParameters::setTime", 
*this );
 }
 // -------------------------------------------------------------------------
 
-void SAL_CALL OEvoabPreparedStatement::setTimestamp( sal_Int32 parameterIndex, 
const DateTime& aVal ) throw(SQLException, RuntimeException)
+void SAL_CALL OEvoabPreparedStatement::setTimestamp( sal_Int32 
/*parameterIndex*/, const DateTime& /*aVal*/ ) throw(SQLException, 
RuntimeException)
 {
-       ::osl::MutexGuard aGuard( m_aMutex );
-       checkDisposed(OStatement_BASE::rBHelper.bDisposed);
-               
+    ::dbtools::throwFunctionNotSupportedException( 
"XParameters::setTimestamp", *this );
 }
 // -------------------------------------------------------------------------
 
-void SAL_CALL OEvoabPreparedStatement::setDouble( sal_Int32 parameterIndex, 
double x ) throw(SQLException, RuntimeException)
+void SAL_CALL OEvoabPreparedStatement::setDouble( sal_Int32 
/*parameterIndex*/, double /*x*/ ) throw(SQLException, RuntimeException)
 {
-       ::osl::MutexGuard aGuard( m_aMutex );
-       checkDisposed(OStatement_BASE::rBHelper.bDisposed);
-               
+    ::dbtools::throwFunctionNotSupportedException( "XParameters::setDouble", 
*this );
 }
 
 // -------------------------------------------------------------------------
 
-void SAL_CALL OEvoabPreparedStatement::setFloat( sal_Int32 parameterIndex, 
float x ) throw(SQLException, RuntimeException)
+void SAL_CALL OEvoabPreparedStatement::setFloat( sal_Int32 /*parameterIndex*/, 
float /*x*/ ) throw(SQLException, RuntimeException)
 {
-       ::osl::MutexGuard aGuard( m_aMutex );
-       checkDisposed(OStatement_BASE::rBHelper.bDisposed);
-               
+    ::dbtools::throwFunctionNotSupportedException( "XParameters::setFloat", 
*this );
 }
 // -------------------------------------------------------------------------
 
-void SAL_CALL OEvoabPreparedStatement::setInt( sal_Int32 parameterIndex, 
sal_Int32 x ) throw(SQLException, RuntimeException)
+void SAL_CALL OEvoabPreparedStatement::setInt( sal_Int32 /*parameterIndex*/, 
sal_Int32 /*x*/ ) throw(SQLException, RuntimeException)
 {
-       ::osl::MutexGuard aGuard( m_aMutex );
-       checkDisposed(OStatement_BASE::rBHelper.bDisposed);
-               
+    ::dbtools::throwFunctionNotSupportedException( "XParameters::setInt", 
*this );
 }
 // -------------------------------------------------------------------------
 
-void SAL_CALL OEvoabPreparedStatement::setLong( sal_Int32 parameterIndex, 
sal_Int64 aVal ) throw(SQLException, RuntimeException)
+void SAL_CALL OEvoabPreparedStatement::setLong( sal_Int32 /*parameterIndex*/, 
sal_Int64 /*aVal*/ ) throw(SQLException, RuntimeException)
 {
-       ::osl::MutexGuard aGuard( m_aMutex );
-       checkDisposed(OStatement_BASE::rBHelper.bDisposed);
-               
+    ::dbtools::throwFunctionNotSupportedException( "XParameters::setLong", 
*this );
 }
 // -------------------------------------------------------------------------
 
-void SAL_CALL OEvoabPreparedStatement::setNull( sal_Int32 parameterIndex, 
sal_Int32 sqlType ) throw(SQLException, RuntimeException)
+void SAL_CALL OEvoabPreparedStatement::setNull( sal_Int32 /*parameterIndex*/, 
sal_Int32 /*sqlType*/ ) throw(SQLException, RuntimeException)
 {
-       ::osl::MutexGuard aGuard( m_aMutex );
-       checkDisposed(OStatement_BASE::rBHelper.bDisposed);
-               
+    ::dbtools::throwFunctionNotSupportedException( "XParameters::setNull", 
*this );
 }
 // -------------------------------------------------------------------------
 
-void SAL_CALL OEvoabPreparedStatement::setClob( sal_Int32 parameterIndex, 
const Reference< XClob >& x ) throw(SQLException, RuntimeException)
+void SAL_CALL OEvoabPreparedStatement::setClob( sal_Int32 /*parameterIndex*/, 
const Reference< XClob >& /*x*/ ) throw(SQLException, RuntimeException)
 {
-       ::osl::MutexGuard aGuard( m_aMutex );
-       checkDisposed(OStatement_BASE::rBHelper.bDisposed);
-               
+    ::dbtools::throwFunctionNotSupportedException( "XParameters::setClob", 
*this );
 }
 // -------------------------------------------------------------------------
 
-void SAL_CALL OEvoabPreparedStatement::setBlob( sal_Int32 parameterIndex, 
const Reference< XBlob >& x ) throw(SQLException, RuntimeException)
+void SAL_CALL OEvoabPreparedStatement::setBlob( sal_Int32 /*parameterIndex*/, 
const Reference< XBlob >& /*x*/ ) throw(SQLException, RuntimeException)
 {
-       ::osl::MutexGuard aGuard( m_aMutex );
-       checkDisposed(OStatement_BASE::rBHelper.bDisposed);
-               
+    ::dbtools::throwFunctionNotSupportedException( "XParameters::setBlob", 
*this );
 }
 // -------------------------------------------------------------------------
 
-void SAL_CALL OEvoabPreparedStatement::setArray( sal_Int32 parameterIndex, 
const Reference< XArray >& x ) throw(SQLException, RuntimeException)
+void SAL_CALL OEvoabPreparedStatement::setArray( sal_Int32 /*parameterIndex*/, 
const Reference< XArray >& /*x*/ ) throw(SQLException, RuntimeException)
 {
-       ::osl::MutexGuard aGuard( m_aMutex );
-       checkDisposed(OStatement_BASE::rBHelper.bDisposed);
-               
+    ::dbtools::throwFunctionNotSupportedException( "XParameters::setArray", 
*this );
 }
 // -------------------------------------------------------------------------
 
-void SAL_CALL OEvoabPreparedStatement::setRef( sal_Int32 parameterIndex, const 
Reference< XRef >& x ) throw(SQLException, RuntimeException)
+void SAL_CALL OEvoabPreparedStatement::setRef( sal_Int32 /*parameterIndex*/, 
const Reference< XRef >& /*x*/ ) throw(SQLException, RuntimeException)
 {
-       ::osl::MutexGuard aGuard( m_aMutex );
-       checkDisposed(OStatement_BASE::rBHelper.bDisposed);
-               
+    ::dbtools::throwFunctionNotSupportedException( "XParameters::setRef", 
*this );
 }
 // -------------------------------------------------------------------------
 
-void SAL_CALL OEvoabPreparedStatement::setObjectWithInfo( sal_Int32 
parameterIndex, const Any& x, sal_Int32 sqlType, sal_Int32 scale ) 
throw(SQLException, RuntimeException)
+void SAL_CALL OEvoabPreparedStatement::setObjectWithInfo( sal_Int32 
/*parameterIndex*/, const Any& /*x*/, sal_Int32 /*sqlType*/, sal_Int32 
/*scale*/ ) throw(SQLException, RuntimeException)
 {
-       checkDisposed(OStatement_BASE::rBHelper.bDisposed);
-       ::osl::MutexGuard aGuard( m_aMutex );   
-
+    ::dbtools::throwFunctionNotSupportedException( 
"XParameters::setObjectWithInfo", *this );
 }
 // -------------------------------------------------------------------------
 
-void SAL_CALL OEvoabPreparedStatement::setObjectNull( sal_Int32 
parameterIndex, sal_Int32 sqlType, const ::rtl::OUString& typeName ) 
throw(SQLException, RuntimeException)
+void SAL_CALL OEvoabPreparedStatement::setObjectNull( sal_Int32 
/*parameterIndex*/, sal_Int32 /*sqlType*/, const ::rtl::OUString& /*typeName*/ 
) throw(SQLException, RuntimeException)
 {
-       ::osl::MutexGuard aGuard( m_aMutex );
-       checkDisposed(OStatement_BASE::rBHelper.bDisposed);
-               
+    ::dbtools::throwFunctionNotSupportedException( 
"XParameters::setObjectNull", *this );
 }
 // -------------------------------------------------------------------------
 
-void SAL_CALL OEvoabPreparedStatement::setObject( sal_Int32 parameterIndex, 
const Any& x ) throw(SQLException, RuntimeException)
+void SAL_CALL OEvoabPreparedStatement::setObject( sal_Int32 
/*parameterIndex*/, const Any& /*x*/ ) throw(SQLException, RuntimeException)
 {
-       ::osl::MutexGuard aGuard( m_aMutex );
-       checkDisposed(OStatement_BASE::rBHelper.bDisposed);
-               
+    ::dbtools::throwFunctionNotSupportedException( "XParameters::setObject", 
*this );
 }
 // -------------------------------------------------------------------------
 
-void SAL_CALL OEvoabPreparedStatement::setShort( sal_Int32 parameterIndex, 
sal_Int16 x ) throw(SQLException, RuntimeException)
+void SAL_CALL OEvoabPreparedStatement::setShort( sal_Int32 /*parameterIndex*/, 
sal_Int16 /*x*/ ) throw(SQLException, RuntimeException)
 {
-       ::osl::MutexGuard aGuard( m_aMutex );
-       checkDisposed(OStatement_BASE::rBHelper.bDisposed);
-               
+    ::dbtools::throwFunctionNotSupportedException( "XParameters::setShort", 
*this );
 }
 // -------------------------------------------------------------------------
 
-void SAL_CALL OEvoabPreparedStatement::setBytes( sal_Int32 parameterIndex, 
const Sequence< sal_Int8 >& x ) throw(SQLException, RuntimeException)
+void SAL_CALL OEvoabPreparedStatement::setBytes( sal_Int32 /*parameterIndex*/, 
const Sequence< sal_Int8 >& /*x*/ ) throw(SQLException, RuntimeException)
 {
-       ::osl::MutexGuard aGuard( m_aMutex );
-       checkDisposed(OStatement_BASE::rBHelper.bDisposed);
-               
+    ::dbtools::throwFunctionNotSupportedException( "XParameters::setBytes", 
*this );
 }
 // -------------------------------------------------------------------------
 
 
-void SAL_CALL OEvoabPreparedStatement::setCharacterStream( sal_Int32 
parameterIndex, const Reference< ::com::sun::star::io::XInputStream >& x, 
sal_Int32 length ) throw(SQLException, RuntimeException)
+void SAL_CALL OEvoabPreparedStatement::setCharacterStream( sal_Int32 
/*parameterIndex*/, const Reference< ::com::sun::star::io::XInputStream >& 
/*x*/, sal_Int32 /*length*/ ) throw(SQLException, RuntimeException)
 {
-       ::osl::MutexGuard aGuard( m_aMutex );
-       checkDisposed(OStatement_BASE::rBHelper.bDisposed);
-               
+    ::dbtools::throwFunctionNotSupportedException( 
"XParameters::setCharacterStream", *this );
 }
 // -------------------------------------------------------------------------
 
-void SAL_CALL OEvoabPreparedStatement::setBinaryStream( sal_Int32 
parameterIndex, const Reference< ::com::sun::star::io::XInputStream >& x, 
sal_Int32 length ) throw(SQLException, RuntimeException)
+void SAL_CALL OEvoabPreparedStatement::setBinaryStream( sal_Int32 
/*parameterIndex*/, const Reference< ::com::sun::star::io::XInputStream >& 
/*x*/, sal_Int32 /*length*/ ) throw(SQLException, RuntimeException)
 {
-       ::osl::MutexGuard aGuard( m_aMutex );
-       checkDisposed(OStatement_BASE::rBHelper.bDisposed);
-               
+    ::dbtools::throwFunctionNotSupportedException( 
"XParameters::setBinaryStream", *this );
 }
 // -------------------------------------------------------------------------
 
@@ -372,12 +331,6 @@
                default:
                        
OStatement_Base::setFastPropertyValue_NoBroadcast(nHandle,rValue);
        }
-}
-// 
-----------------------------------------------------------------------------
-void OEvoabPreparedStatement::checkParameterIndex(sal_Int32 _parameterIndex)
-{
-       if(     !_parameterIndex || _parameterIndex > m_nNumParams)
-               throw SQLException();
 }
 // 
-----------------------------------------------------------------------------
 ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSet > 
SAL_CALL OEvoabPreparedStatement::getResultSet(  ) 
throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)




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

Reply via email to