LCOV - code coverage report
Current view: top level - libreoffice/connectivity/source/inc/odbc - OResultSet.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 22 0.0 %
Date: 2012-12-27 Functions: 0 4 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #ifndef _CONNECTIVITY_ODBC_ORESULTSET_HXX_
      21             : #define _CONNECTIVITY_ODBC_ORESULTSET_HXX_
      22             : 
      23             : #include <com/sun/star/sdbc/XResultSet.hpp>
      24             : #include <com/sun/star/sdbc/XRow.hpp>
      25             : #include <com/sun/star/sdbc/XResultSetMetaDataSupplier.hpp>
      26             : #include <com/sun/star/sdbc/XCloseable.hpp>
      27             : #include <com/sun/star/sdbc/XColumnLocate.hpp>
      28             : #include <com/sun/star/util/XCancellable.hpp>
      29             : #include <com/sun/star/sdbc/XWarningsSupplier.hpp>
      30             : #include <com/sun/star/sdbc/XResultSetUpdate.hpp>
      31             : #include <com/sun/star/sdbc/XRowUpdate.hpp>
      32             : #include <com/sun/star/sdbcx/XRowLocate.hpp>
      33             : #include <com/sun/star/sdbcx/XDeleteRows.hpp>
      34             : #include <cppuhelper/compbase12.hxx>
      35             : #include <comphelper/proparrhlp.hxx>
      36             : #include "odbc/OFunctions.hxx"
      37             : #include "odbc/OStatement.hxx"
      38             : #include "odbc/odbcbasedllapi.hxx"
      39             : #include "connectivity/CommonTools.hxx"
      40             : #include "connectivity/FValue.hxx"
      41             : #include "TSkipDeletedSet.hxx"
      42             : 
      43             : namespace connectivity
      44             : {
      45             :     namespace odbc
      46             :     {
      47             : 
      48             :         /*
      49             :         **  java_sql_ResultSet
      50             :         */
      51             :         typedef ::cppu::WeakComponentImplHelper12<      ::com::sun::star::sdbc::XResultSet,
      52             :                                                         ::com::sun::star::sdbc::XRow,
      53             :                                                         ::com::sun::star::sdbc::XResultSetMetaDataSupplier,
      54             :                                                         ::com::sun::star::util::XCancellable,
      55             :                                                         ::com::sun::star::sdbc::XWarningsSupplier,
      56             :                                                         ::com::sun::star::sdbc::XResultSetUpdate,
      57             :                                                         ::com::sun::star::sdbc::XRowUpdate,
      58             :                                                         ::com::sun::star::sdbcx::XRowLocate,
      59             :                                                         ::com::sun::star::sdbcx::XDeleteRows,
      60             :                                                         ::com::sun::star::sdbc::XCloseable,
      61             :                                                         ::com::sun::star::sdbc::XColumnLocate,
      62             :                                                         ::com::sun::star::lang::XServiceInfo> OResultSet_BASE;
      63             : 
      64             : 
      65             :         typedef ::std::pair<sal_Int64,sal_Int32> TVoidPtr;
      66             :         typedef ::std::allocator< TVoidPtr > TVoidAlloc;
      67             :         typedef ::std::vector<TVoidPtr> TVoidVector;
      68             :         //  typedef ::com::sun::star::uno::Sequence<TVoidPtr> TVoidVector;
      69             :         /// unary_function Functor object for class ZZ returntype is void
      70             :         struct OOO_DLLPUBLIC_ODBCBASE TBookmarkPosMapCompare : ::std::binary_function< ::com::sun::star::uno::Sequence<sal_Int8>, ::com::sun::star::uno::Sequence<sal_Int8>, bool >
      71             :         {
      72           0 :             inline bool operator()( const ::com::sun::star::uno::Sequence<sal_Int8>& _rLH,
      73             :                                     const ::com::sun::star::uno::Sequence<sal_Int8>& _rRH) const
      74             :             {
      75           0 :                 if(_rLH.getLength() == _rRH.getLength())
      76             :                 {
      77           0 :                     sal_Int32 nCount = _rLH.getLength();
      78           0 :                     if(nCount != 4)
      79             :                     {
      80           0 :                         const sal_Int8* pLHBack = _rLH.getConstArray() + nCount - 1;
      81           0 :                         const sal_Int8* pRHBack = _rRH.getConstArray() + nCount - 1;
      82             : 
      83             :                         sal_Int32 i;
      84           0 :                         for(i=0;i < nCount;++i,--pLHBack,--pRHBack)
      85             :                         {
      86           0 :                             if(!(*pLHBack) && *pRHBack)
      87           0 :                                 return sal_True;
      88           0 :                             else if(*pLHBack && !(*pRHBack))
      89           0 :                                 return sal_False;
      90             :                         }
      91           0 :                         for(i=0,++pLHBack,++pRHBack;i < nCount;++pLHBack,++pRHBack,++i)
      92           0 :                             if(*pLHBack < *pRHBack)
      93           0 :                                 return sal_True;
      94           0 :                         return sal_False;
      95             :                     }
      96             :                     else
      97           0 :                         return *reinterpret_cast<const sal_Int32*>(_rLH.getConstArray()) < *reinterpret_cast<const sal_Int32*>(_rRH.getConstArray());
      98             : 
      99             :                 }
     100             :                 else
     101           0 :                     return _rLH.getLength() < _rRH.getLength();
     102             :             }
     103             :         };
     104             : 
     105             :         typedef ::std::map< ::com::sun::star::uno::Sequence<sal_Int8>, sal_Int32,TBookmarkPosMapCompare > TBookmarkPosMap;
     106             : 
     107             :         class OOO_DLLPUBLIC_ODBCBASE OResultSet :
     108             :                             public  comphelper::OBaseMutex,
     109             :                             public  ::connectivity::IResultSetHelper,
     110             :                             public  OResultSet_BASE,
     111             :                             public  ::cppu::OPropertySetHelper,
     112             :                             public  ::comphelper::OPropertyArrayUsageHelper<OResultSet>
     113             :         {
     114             :         protected:
     115             :             TBookmarkPosMap                             m_aPosToBookmarks;
     116             :             // used top hold the information about the value and the datatype to save calls to metadata
     117             :             typedef ::std::vector<ORowSetValue>         TDataRow;
     118             : 
     119             :             TVoidVector                                 m_aBindVector;
     120             :             ::std::vector<SQLLEN>                       m_aLengthVector;
     121             :             ::std::map<sal_Int32,SWORD>                 m_aODBCColumnTypes;
     122             : 
     123             :             // In baseline ODBC, SQLGetData can only be called on monotonically increasing column numbers.
     124             :             // additionally, any variable-length data can be fetched only once (possibly in parts);
     125             :             // after that, SQLGetData returns SQL_NO_DATA.
     126             :             // In order to insulate our callers from these restrictions,
     127             :             // we cache the current row in m_aRow.
     128             :             // If the driver claims to support the GD_ANY_ORDER extension,
     129             :             // we read and cache only the columns requested by a caller.
     130             :             // Else, we read and cache all columns whose number is <= a requested column.
     131             :             // m_aRow[colNumber].getBound() says if it contains an up-to-date value or not.
     132             :             TDataRow                                    m_aRow;
     133             :             sal_Bool                                    m_bFetchDataInOrder;
     134             :             SQLHANDLE                                   m_aStatementHandle;
     135             :             SQLHANDLE                                   m_aConnectionHandle;
     136             :             OStatement_Base*                            m_pStatement;
     137             :             OSkipDeletedSet*                            m_pSkipDeletedSet;
     138             :             ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface>    m_xStatement;
     139             :             ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSetMetaData>        m_xMetaData;
     140             :             SQLUSMALLINT*                               m_pRowStatusArray;
     141             :             rtl_TextEncoding                            m_nTextEncoding;
     142             :             sal_Int32                                   m_nRowPos;
     143             :             mutable sal_uInt32                          m_nUseBookmarks;
     144             :             SQLRETURN                                   m_nCurrentFetchState;
     145             :             sal_Bool                                    m_bWasNull;
     146             :             sal_Bool                                    m_bEOF;                 // after last record
     147             :             sal_Bool                                    m_bLastRecord;
     148             :             sal_Bool                                    m_bFreeHandle;
     149             :             sal_Bool                                    m_bInserting;
     150             :             sal_Bool                                    m_bRowInserted;
     151             :             sal_Bool                                    m_bRowDeleted;
     152             :             sal_Bool                                    m_bUseFetchScroll;
     153             : 
     154             :             sal_Bool  isBookmarkable()          const;
     155             :             sal_Int32 getResultSetConcurrency() const;
     156             :             sal_Int32 getResultSetType()        const;
     157             :             sal_Int32 getFetchDirection()       const;
     158             :             sal_Int32 getFetchSize()            const;
     159             :             ::rtl::OUString getCursorName()     const;
     160             :             template < typename T, SQLINTEGER BufferLength > T getStmtOption (SQLINTEGER fOption, T dflt = 0) const;
     161             : 
     162             :             void setFetchDirection(sal_Int32 _par0);
     163             :             void setFetchSize(sal_Int32 _par0);
     164             :             template < typename T, SQLINTEGER BufferLength > SQLRETURN setStmtOption (SQLINTEGER fOption, T value) const;
     165             : 
     166             : 
     167             :             void ensureCacheForColumn(sal_Int32 columnIndex);
     168             :             void invalidateCache();
     169             :             void fillColumn(sal_Int32 _nToColumn);
     170             :             void allocBuffer();
     171             :             void releaseBuffer();
     172             :             void updateValue(sal_Int32 columnIndex,SQLSMALLINT _nType,void* _pValue) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     173             :             void fillNeededData(SQLRETURN _nRet);
     174             :             sal_Bool moveImpl(IResultSetHelper::Movement _eCursorPosition, sal_Int32 _nOffset, sal_Bool _bRetrieveData);
     175             :             TVoidPtr allocBindColumn(sal_Int32 _nType,sal_Int32 _nColumnIndex);
     176             :             SQLRETURN unbind(sal_Bool _bUnbindHandle = sal_True);
     177             :             SWORD impl_getColumnType_nothrow(sal_Int32 columnIndex);
     178             : 
     179             :             // helper to implement XRow::getXXX in simple cases
     180             :             template < typename T > T getValue( sal_Int32 columnIndex );
     181             :             // impl_getXXX are the functions that do the actual fetching from ODBC, ignoring the cache
     182             :             // for simple cases
     183             :             template < typename T > T impl_getValue( const sal_Int32 _nColumnIndex, SQLSMALLINT nType );
     184             :             // these cases need some special treatment
     185             :             sal_Bool impl_getBoolean( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     186             :             ::com::sun::star::uno::Sequence< sal_Int8 > impl_getBytes( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     187             :             ::com::sun::star::util::Date impl_getDate( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     188             :             ::com::sun::star::util::Time impl_getTime( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     189             :             ::com::sun::star::util::DateTime impl_getTimestamp( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     190             :             sal_Int64 impl_getLong( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     191             :             ::rtl::OUString impl_getString( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     192             :             ::com::sun::star::uno::Sequence<sal_Int8> impl_getBookmark(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     193             : 
     194             : 
     195             :             // OPropertyArrayUsageHelper
     196             :             virtual ::cppu::IPropertyArrayHelper* createArrayHelper( ) const;
     197             :             // OPropertySetHelper
     198             :             virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper();
     199             : 
     200             :             virtual sal_Bool SAL_CALL convertFastPropertyValue(
     201             :                                 ::com::sun::star::uno::Any & rConvertedValue,
     202             :                                 ::com::sun::star::uno::Any & rOldValue,
     203             :                                 sal_Int32 nHandle,
     204             :                                 const ::com::sun::star::uno::Any& rValue )
     205             :                                     throw (::com::sun::star::lang::IllegalArgumentException);
     206             :             virtual void SAL_CALL setFastPropertyValue_NoBroadcast(
     207             :                                     sal_Int32 nHandle,
     208             :                                     const ::com::sun::star::uno::Any& rValue
     209             :                                      )
     210             :                                      throw (::com::sun::star::uno::Exception);
     211             :             virtual void SAL_CALL getFastPropertyValue(
     212             :                                     ::com::sun::star::uno::Any& rValue,
     213             :                                     sal_Int32 nHandle
     214             :                                          ) const;
     215             :         public:
     216             :             DECLARE_SERVICE_INFO();
     217             :             // A ctor that is needed for returning the object
     218             :             OResultSet( SQLHANDLE _pStatementHandle,OStatement_Base* pStmt);
     219             :             virtual ~OResultSet();
     220             : 
     221             :             void construct();
     222             : 
     223           0 :             inline oslGenericFunction getOdbcFunction(sal_Int32 _nIndex)  const
     224             :             {
     225           0 :                 return m_pStatement->getOdbcFunction(_nIndex);
     226             :             }
     227             : 
     228           0 :             ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > operator *()
     229             :             {
     230           0 :                 return ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >(*(OResultSet_BASE*)this);
     231             :             }
     232             : 
     233           0 :             inline void setMetaData(const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSetMetaData>& _xMetaData) { m_xMetaData = _xMetaData;}
     234             : 
     235             :             // ::cppu::OComponentHelper
     236             :             virtual void SAL_CALL disposing(void);
     237             :             // XInterface
     238             :             virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException);
     239             :             virtual void SAL_CALL acquire() throw();
     240             :             virtual void SAL_CALL release() throw();
     241             :             //XTypeProvider
     242             :             virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes(  ) throw(::com::sun::star::uno::RuntimeException);
     243             :             // XPropertySet
     244             :             virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo(  ) throw(::com::sun::star::uno::RuntimeException);
     245             :             // XResultSet
     246             :             virtual sal_Bool SAL_CALL next(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     247             :             virtual sal_Bool SAL_CALL isBeforeFirst(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     248             :             virtual sal_Bool SAL_CALL isAfterLast(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     249             :             virtual sal_Bool SAL_CALL isFirst(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     250             :             virtual sal_Bool SAL_CALL isLast(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     251             :             virtual void SAL_CALL beforeFirst(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     252             :             virtual void SAL_CALL afterLast(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     253             :             virtual sal_Bool SAL_CALL first(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     254             :             virtual sal_Bool SAL_CALL last(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     255             :             virtual sal_Int32 SAL_CALL getRow(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     256             :             virtual sal_Bool SAL_CALL absolute( sal_Int32 row ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     257             :             virtual sal_Bool SAL_CALL relative( sal_Int32 rows ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     258             :             virtual sal_Bool SAL_CALL previous(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     259             :             virtual void SAL_CALL refreshRow(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     260             :             virtual sal_Bool SAL_CALL rowUpdated(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     261             :             virtual sal_Bool SAL_CALL rowInserted(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     262             :             virtual sal_Bool SAL_CALL rowDeleted(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     263             :             virtual ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL getStatement(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     264             :             // XRow
     265             :             virtual sal_Bool SAL_CALL wasNull(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     266             :             virtual ::rtl::OUString SAL_CALL getString( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     267             :             virtual sal_Bool SAL_CALL getBoolean( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     268             :             virtual sal_Int8 SAL_CALL getByte( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     269             :             virtual sal_Int16 SAL_CALL getShort( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     270             :             virtual sal_Int32 SAL_CALL getInt( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     271             :             virtual sal_Int64 SAL_CALL getLong( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     272             :             virtual float SAL_CALL getFloat( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     273             :             virtual double SAL_CALL getDouble( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     274             :             virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getBytes( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     275             :             virtual ::com::sun::star::util::Date SAL_CALL getDate( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     276             :             virtual ::com::sun::star::util::Time SAL_CALL getTime( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     277             :             virtual ::com::sun::star::util::DateTime SAL_CALL getTimestamp( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     278             :             virtual ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > SAL_CALL getBinaryStream( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     279             :             virtual ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > SAL_CALL getCharacterStream( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     280             :             virtual ::com::sun::star::uno::Any SAL_CALL getObject( sal_Int32 columnIndex, const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess >& typeMap ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     281             :             virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRef > SAL_CALL getRef( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     282             :             virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XBlob > SAL_CALL getBlob( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     283             :             virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XClob > SAL_CALL getClob( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     284             :             virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XArray > SAL_CALL getArray( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     285             :             // XResultSetMetaDataSupplier
     286             :             virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSetMetaData > SAL_CALL getMetaData(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     287             :             // XCancellable
     288             :             virtual void SAL_CALL cancel(  ) throw(::com::sun::star::uno::RuntimeException);
     289             :             // XCloseable
     290             :             virtual void SAL_CALL close(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     291             :             // XWarningsSupplier
     292             :             virtual ::com::sun::star::uno::Any SAL_CALL getWarnings(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     293             :             virtual void SAL_CALL clearWarnings(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     294             :             // XResultSetUpdate
     295             :             virtual void SAL_CALL insertRow(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     296             :             virtual void SAL_CALL updateRow(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     297             :             virtual void SAL_CALL deleteRow(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     298             :             virtual void SAL_CALL cancelRowUpdates(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     299             :             virtual void SAL_CALL moveToInsertRow(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     300             :             virtual void SAL_CALL moveToCurrentRow(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     301             :             // XRowUpdate
     302             :             virtual void SAL_CALL updateNull( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     303             :             virtual void SAL_CALL updateBoolean( sal_Int32 columnIndex, sal_Bool x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     304             :             virtual void SAL_CALL updateByte( sal_Int32 columnIndex, sal_Int8 x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     305             :             virtual void SAL_CALL updateShort( sal_Int32 columnIndex, sal_Int16 x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     306             :             virtual void SAL_CALL updateInt( sal_Int32 columnIndex, sal_Int32 x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     307             :             virtual void SAL_CALL updateLong( sal_Int32 columnIndex, sal_Int64 x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     308             :             virtual void SAL_CALL updateFloat( sal_Int32 columnIndex, float x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     309             :             virtual void SAL_CALL updateDouble( sal_Int32 columnIndex, double x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     310             :             virtual void SAL_CALL updateString( sal_Int32 columnIndex, const ::rtl::OUString& x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     311             :             virtual void SAL_CALL updateBytes( sal_Int32 columnIndex, const ::com::sun::star::uno::Sequence< sal_Int8 >& x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     312             :             virtual void SAL_CALL updateDate( sal_Int32 columnIndex, const ::com::sun::star::util::Date& x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     313             :             virtual void SAL_CALL updateTime( sal_Int32 columnIndex, const ::com::sun::star::util::Time& x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     314             :             virtual void SAL_CALL updateTimestamp( sal_Int32 columnIndex, const ::com::sun::star::util::DateTime& x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     315             :             virtual void SAL_CALL updateBinaryStream( sal_Int32 columnIndex, const ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream >& x, sal_Int32 length ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     316             :             virtual void SAL_CALL updateCharacterStream( sal_Int32 columnIndex, const ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream >& x, sal_Int32 length ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     317             :             virtual void SAL_CALL updateObject( sal_Int32 columnIndex, const ::com::sun::star::uno::Any& x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     318             :             virtual void SAL_CALL updateNumericObject( sal_Int32 columnIndex, const ::com::sun::star::uno::Any& x, sal_Int32 scale ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     319             :             // XColumnLocate
     320             :             virtual sal_Int32 SAL_CALL findColumn( const ::rtl::OUString& columnName ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     321             :             // XRowLocate
     322             :             virtual ::com::sun::star::uno::Any SAL_CALL getBookmark(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     323             :             virtual sal_Bool SAL_CALL moveToBookmark( const ::com::sun::star::uno::Any& bookmark ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     324             :             virtual sal_Bool SAL_CALL moveRelativeToBookmark( const ::com::sun::star::uno::Any& bookmark, sal_Int32 rows ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     325             :             virtual sal_Int32 SAL_CALL compareBookmarks( const ::com::sun::star::uno::Any& first, const ::com::sun::star::uno::Any& second ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     326             :             virtual sal_Bool SAL_CALL hasOrderedBookmarks(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     327             :             virtual sal_Int32 SAL_CALL hashBookmark( const ::com::sun::star::uno::Any& bookmark ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     328             :             // XDeleteRows
     329             :             virtual ::com::sun::star::uno::Sequence< sal_Int32 > SAL_CALL deleteRows( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& rows ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
     330             : 
     331             :             // IResultSetHelper
     332             :             virtual sal_Bool move(IResultSetHelper::Movement _eCursorPosition, sal_Int32 _nOffset, sal_Bool _bRetrieveData);
     333             :             virtual sal_Int32 getDriverPos() const;
     334             :             virtual sal_Bool deletedVisible() const;
     335             :             virtual sal_Bool isRowDeleted() const;
     336             : 
     337             :         protected:
     338             :             using OPropertySetHelper::getFastPropertyValue;
     339             :         };
     340             :     }
     341             : }
     342             : #endif // _CONNECTIVITY_ODBC_ORESULTSET_HXX_
     343             : 
     344             : 
     345             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10