1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 24 #ifndef _CONNECTIVITY_ODBC_ORESULTSET_HXX_ 25 #define _CONNECTIVITY_ODBC_ORESULTSET_HXX_ 26 27 #include <com/sun/star/sdbc/XResultSet.hpp> 28 #include <com/sun/star/sdbc/XRow.hpp> 29 #include <com/sun/star/sdbc/XResultSetMetaDataSupplier.hpp> 30 #include <com/sun/star/sdbc/XCloseable.hpp> 31 #include <com/sun/star/sdbc/XColumnLocate.hpp> 32 #include <com/sun/star/util/XCancellable.hpp> 33 #include <com/sun/star/sdbc/XWarningsSupplier.hpp> 34 #include <com/sun/star/sdbc/XResultSetUpdate.hpp> 35 #include <com/sun/star/sdbc/XRowUpdate.hpp> 36 #include <com/sun/star/sdbcx/XRowLocate.hpp> 37 #include <com/sun/star/sdbcx/XDeleteRows.hpp> 38 #include <cppuhelper/compbase12.hxx> 39 #include <comphelper/proparrhlp.hxx> 40 #include "odbc/OFunctions.hxx" 41 #include "odbc/OStatement.hxx" 42 #include "odbc/odbcbasedllapi.hxx" 43 #include "connectivity/CommonTools.hxx" 44 #include "connectivity/FValue.hxx" 45 #include "TSkipDeletedSet.hxx" 46 47 namespace connectivity 48 { 49 namespace odbc 50 { 51 52 /* 53 ** java_sql_ResultSet 54 */ 55 typedef ::cppu::WeakComponentImplHelper12< ::com::sun::star::sdbc::XResultSet, 56 ::com::sun::star::sdbc::XRow, 57 ::com::sun::star::sdbc::XResultSetMetaDataSupplier, 58 ::com::sun::star::util::XCancellable, 59 ::com::sun::star::sdbc::XWarningsSupplier, 60 ::com::sun::star::sdbc::XResultSetUpdate, 61 ::com::sun::star::sdbc::XRowUpdate, 62 ::com::sun::star::sdbcx::XRowLocate, 63 ::com::sun::star::sdbcx::XDeleteRows, 64 ::com::sun::star::sdbc::XCloseable, 65 ::com::sun::star::sdbc::XColumnLocate, 66 ::com::sun::star::lang::XServiceInfo> OResultSet_BASE; 67 68 69 typedef ::std::pair<sal_Int64,sal_Int32> TVoidPtr; 70 typedef ::std::allocator< TVoidPtr > TVoidAlloc; 71 typedef ::std::vector<TVoidPtr> TVoidVector; 72 // typedef ::com::sun::star::uno::Sequence<TVoidPtr> TVoidVector; 73 /// unary_function Functor object for class ZZ returntype is void 74 struct OOO_DLLPUBLIC_ODBCBASE TBookmarkPosMapCompare : ::std::binary_function< ::com::sun::star::uno::Sequence<sal_Int8>, ::com::sun::star::uno::Sequence<sal_Int8>, bool > 75 { operator ()connectivity::odbc::TBookmarkPosMapCompare76 inline bool operator()( const ::com::sun::star::uno::Sequence<sal_Int8>& _rLH, 77 const ::com::sun::star::uno::Sequence<sal_Int8>& _rRH) const 78 { 79 if(_rLH.getLength() == _rRH.getLength()) 80 { 81 sal_Int32 nCount = _rLH.getLength(); 82 if(nCount != 4) 83 { 84 const sal_Int8* pLHBack = _rLH.getConstArray() + nCount - 1; 85 const sal_Int8* pRHBack = _rRH.getConstArray() + nCount - 1; 86 87 sal_Int32 i; 88 for(i=0;i < nCount;++i,--pLHBack,--pRHBack) 89 { 90 if(!(*pLHBack) && *pRHBack) 91 return sal_True; 92 else if(*pLHBack && !(*pRHBack)) 93 return sal_False; 94 } 95 for(i=0,++pLHBack,++pRHBack;i < nCount;++pLHBack,++pRHBack,++i) 96 if(*pLHBack < *pRHBack) 97 return sal_True; 98 return sal_False; 99 } 100 else 101 return *reinterpret_cast<const sal_Int32*>(_rLH.getConstArray()) < *reinterpret_cast<const sal_Int32*>(_rRH.getConstArray()); 102 103 } 104 else 105 return _rLH.getLength() < _rRH.getLength(); 106 } 107 }; 108 109 typedef ::std::map< ::com::sun::star::uno::Sequence<sal_Int8>, sal_Int32,TBookmarkPosMapCompare > TBookmarkPosMap; 110 111 class OOO_DLLPUBLIC_ODBCBASE OResultSet : 112 public comphelper::OBaseMutex, 113 public ::connectivity::IResultSetHelper, 114 public OResultSet_BASE, 115 public ::cppu::OPropertySetHelper, 116 public ::comphelper::OPropertyArrayUsageHelper<OResultSet> 117 { 118 protected: 119 TBookmarkPosMap m_aPosToBookmarks; 120 // used top hold the information about the value and the datatype to save calls to metadata 121 typedef ::std::vector<ORowSetValue> TDataRow; 122 123 TVoidVector m_aBindVector; 124 ::std::vector<SQLLEN> m_aLengthVector; 125 ::std::map<sal_Int32,SWORD> m_aODBCColumnTypes; 126 ::com::sun::star::uno::Sequence<sal_Int8> m_aBookmark; 127 128 TDataRow m_aRow; // only used when SQLGetData can't be called in any order 129 ORowSetValue m_aEmptyValue; // needed for the getValue method when no prefetch is used 130 SQLHANDLE m_aStatementHandle; 131 SQLHANDLE m_aConnectionHandle; 132 OStatement_Base* m_pStatement; 133 OSkipDeletedSet* m_pSkipDeletedSet; 134 ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface> m_xStatement; 135 ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSetMetaData> m_xMetaData; 136 SQLUSMALLINT* m_pRowStatusArray; 137 rtl_TextEncoding m_nTextEncoding; 138 sal_Int32 m_nRowPos; 139 sal_Int32 m_nLastColumnPos; // used for m_aRow just to know where we are 140 mutable SQLULEN m_nUseBookmarks; 141 SQLRETURN m_nCurrentFetchState; 142 sal_Bool m_bWasNull; 143 sal_Bool m_bEOF; // after last record 144 sal_Bool m_bLastRecord; 145 sal_Bool m_bFreeHandle; 146 sal_Bool m_bInserting; 147 sal_Bool m_bFetchData; // true when SQLGetaData can be called in any order or when fetching data for m_aRow 148 sal_Bool m_bRowInserted; 149 sal_Bool m_bRowDeleted; 150 sal_Bool m_bUseFetchScroll; 151 152 sal_Bool isBookmarkable() const; 153 sal_Int32 getResultSetConcurrency() const; 154 sal_Int32 getResultSetType() const; 155 sal_Int32 getFetchDirection() const; 156 sal_Int32 getFetchSize() const; 157 ::rtl::OUString getCursorName() const; 158 159 void setFetchDirection(sal_Int32 _par0); 160 void setFetchSize(sal_Int32 _par0); 161 162 163 void fillRow(sal_Int32 _nToColumn); 164 void allocBuffer(); 165 void releaseBuffer(); 166 void updateValue(sal_Int32 columnIndex,SQLSMALLINT _nType,void* _pValue) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 167 void fillNeededData(SQLRETURN _nRet); 168 const ORowSetValue& getValue(sal_Int32 _nColumnIndex,SQLSMALLINT _nType,void* _pValue,SQLINTEGER _rSize); 169 sal_Bool moveImpl(IResultSetHelper::Movement _eCursorPosition, sal_Int32 _nOffset, sal_Bool _bRetrieveData); 170 TVoidPtr allocBindColumn(sal_Int32 _nType,sal_Int32 _nColumnIndex); 171 SQLRETURN unbind(sal_Bool _bUnbindHandle = sal_True); 172 SWORD impl_getColumnType_nothrow(sal_Int32 columnIndex); 173 174 // OPropertyArrayUsageHelper 175 virtual ::cppu::IPropertyArrayHelper* createArrayHelper( ) const; 176 // OPropertySetHelper 177 virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper(); 178 179 virtual sal_Bool SAL_CALL convertFastPropertyValue( 180 ::com::sun::star::uno::Any & rConvertedValue, 181 ::com::sun::star::uno::Any & rOldValue, 182 sal_Int32 nHandle, 183 const ::com::sun::star::uno::Any& rValue ) 184 throw (::com::sun::star::lang::IllegalArgumentException); 185 virtual void SAL_CALL setFastPropertyValue_NoBroadcast( 186 sal_Int32 nHandle, 187 const ::com::sun::star::uno::Any& rValue 188 ) 189 throw (::com::sun::star::uno::Exception); 190 virtual void SAL_CALL getFastPropertyValue( 191 ::com::sun::star::uno::Any& rValue, 192 sal_Int32 nHandle 193 ) const; 194 public: 195 DECLARE_SERVICE_INFO(); 196 // ein Konstruktor, der fuer das Returnen des Objektes benoetigt wird: 197 OResultSet( SQLHANDLE _pStatementHandle,OStatement_Base* pStmt); 198 virtual ~OResultSet(); 199 200 void construct(); 201 getOdbcFunction(sal_Int32 _nIndex) const202 inline oslGenericFunction getOdbcFunction(sal_Int32 _nIndex) const 203 { 204 return m_pStatement->getOdbcFunction(_nIndex); 205 } 206 operator *()207 ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > operator *() 208 { 209 return ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >(*(OResultSet_BASE*)this); 210 } 211 setMetaData(const::com::sun::star::uno::Reference<::com::sun::star::sdbc::XResultSetMetaData> & _xMetaData)212 inline void setMetaData(const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSetMetaData>& _xMetaData) { m_xMetaData = _xMetaData;} 213 214 // ::cppu::OComponentHelper 215 virtual void SAL_CALL disposing(void); 216 // XInterface 217 virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException); 218 virtual void SAL_CALL acquire() throw(); 219 virtual void SAL_CALL release() throw(); 220 //XTypeProvider 221 virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes( ) throw(::com::sun::star::uno::RuntimeException); 222 // XPropertySet 223 virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) throw(::com::sun::star::uno::RuntimeException); 224 // XResultSet 225 virtual sal_Bool SAL_CALL next( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 226 virtual sal_Bool SAL_CALL isBeforeFirst( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 227 virtual sal_Bool SAL_CALL isAfterLast( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 228 virtual sal_Bool SAL_CALL isFirst( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 229 virtual sal_Bool SAL_CALL isLast( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 230 virtual void SAL_CALL beforeFirst( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 231 virtual void SAL_CALL afterLast( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 232 virtual sal_Bool SAL_CALL first( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 233 virtual sal_Bool SAL_CALL last( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 234 virtual sal_Int32 SAL_CALL getRow( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 235 virtual sal_Bool SAL_CALL absolute( sal_Int32 row ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 236 virtual sal_Bool SAL_CALL relative( sal_Int32 rows ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 237 virtual sal_Bool SAL_CALL previous( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 238 virtual void SAL_CALL refreshRow( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 239 virtual sal_Bool SAL_CALL rowUpdated( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 240 virtual sal_Bool SAL_CALL rowInserted( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 241 virtual sal_Bool SAL_CALL rowDeleted( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 242 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); 243 // XRow 244 virtual sal_Bool SAL_CALL wasNull( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 245 virtual ::rtl::OUString SAL_CALL getString( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 246 virtual sal_Bool SAL_CALL getBoolean( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 247 virtual sal_Int8 SAL_CALL getByte( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 248 virtual sal_Int16 SAL_CALL getShort( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 249 virtual sal_Int32 SAL_CALL getInt( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 250 virtual sal_Int64 SAL_CALL getLong( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 251 virtual float SAL_CALL getFloat( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 252 virtual double SAL_CALL getDouble( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 253 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); 254 virtual ::com::sun::star::util::Date SAL_CALL getDate( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 255 virtual ::com::sun::star::util::Time SAL_CALL getTime( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 256 virtual ::com::sun::star::util::DateTime SAL_CALL getTimestamp( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 257 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); 258 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); 259 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); 260 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); 261 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); 262 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); 263 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); 264 // XResultSetMetaDataSupplier 265 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); 266 // XCancellable 267 virtual void SAL_CALL cancel( ) throw(::com::sun::star::uno::RuntimeException); 268 // XCloseable 269 virtual void SAL_CALL close( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 270 // XWarningsSupplier 271 virtual ::com::sun::star::uno::Any SAL_CALL getWarnings( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 272 virtual void SAL_CALL clearWarnings( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 273 // XResultSetUpdate 274 virtual void SAL_CALL insertRow( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 275 virtual void SAL_CALL updateRow( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 276 virtual void SAL_CALL deleteRow( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 277 virtual void SAL_CALL cancelRowUpdates( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 278 virtual void SAL_CALL moveToInsertRow( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 279 virtual void SAL_CALL moveToCurrentRow( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 280 // XRowUpdate 281 virtual void SAL_CALL updateNull( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 282 virtual void SAL_CALL updateBoolean( sal_Int32 columnIndex, sal_Bool x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 283 virtual void SAL_CALL updateByte( sal_Int32 columnIndex, sal_Int8 x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 284 virtual void SAL_CALL updateShort( sal_Int32 columnIndex, sal_Int16 x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 285 virtual void SAL_CALL updateInt( sal_Int32 columnIndex, sal_Int32 x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 286 virtual void SAL_CALL updateLong( sal_Int32 columnIndex, sal_Int64 x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 287 virtual void SAL_CALL updateFloat( sal_Int32 columnIndex, float x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 288 virtual void SAL_CALL updateDouble( sal_Int32 columnIndex, double x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 289 virtual void SAL_CALL updateString( sal_Int32 columnIndex, const ::rtl::OUString& x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 290 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); 291 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); 292 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); 293 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); 294 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); 295 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); 296 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); 297 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); 298 // XColumnLocate 299 virtual sal_Int32 SAL_CALL findColumn( const ::rtl::OUString& columnName ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 300 // XRowLocate 301 virtual ::com::sun::star::uno::Any SAL_CALL getBookmark( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 302 virtual sal_Bool SAL_CALL moveToBookmark( const ::com::sun::star::uno::Any& bookmark ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 303 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); 304 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); 305 virtual sal_Bool SAL_CALL hasOrderedBookmarks( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 306 virtual sal_Int32 SAL_CALL hashBookmark( const ::com::sun::star::uno::Any& bookmark ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 307 // XDeleteRows 308 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); 309 310 // IResultSetHelper 311 virtual sal_Bool move(IResultSetHelper::Movement _eCursorPosition, sal_Int32 _nOffset, sal_Bool _bRetrieveData); 312 virtual sal_Int32 getDriverPos() const; 313 virtual sal_Bool deletedVisible() const; 314 virtual sal_Bool isRowDeleted() const; 315 316 protected: 317 using OPropertySetHelper::getFastPropertyValue; 318 }; 319 } 320 } 321 #endif // _CONNECTIVITY_ODBC_ORESULTSET_HXX_ 322 323 324