Searched refs:xListCursor (Results 1 – 4 of 4) sorted by relevance
503 ::utl::SharedUNOComponent< XResultSet > xListCursor; in loadData()595 xListCursor.reset( m_aListRowSet.execute() ); in loadData()613 OSL_ENSURE( xListCursor.is() || ( ListSourceType_TABLEFIELDS == m_eListSourceType ), in loadData()615 if ( !xListCursor.is() && ( ListSourceType_TABLEFIELDS != m_eListSourceType ) ) in loadData()626 Reference<XColumnsSupplier> xSupplyCols(xListCursor, UNO_QUERY); in loadData()645 while (xListCursor->next() && (i++<SHRT_MAX)) // max anzahl eintraege in loadData()
686 ::utl::SharedUNOComponent< XResultSet > xListCursor; in loadData()793 xListCursor.reset( m_aListRowSet.execute() ); in loadData()813 OSL_ENSURE( xListCursor.is() || ( ListSourceType_TABLEFIELDS == m_eListSourceType ), in loadData()815 if ( !xListCursor.is() && ( ListSourceType_TABLEFIELDS != m_eListSourceType ) ) in loadData()826 Reference<XColumnsSupplier> xSupplyCols(xListCursor, UNO_QUERY); in loadData()865 Reference< XRow > xCursorRow( xListCursor, UNO_QUERY_THROW ); in loadData()866 …while ( xListCursor->next() && ( entryPos++ < SHRT_MAX ) ) // SHRT_MAX is the maximum number of en… in loadData()
395 ::utl::SharedUNOComponent< XResultSet > xListCursor; in implInitFilterList()461 xListCursor.reset( xStatement->executeQuery( sSelectStatement ) ); in implInitFilterList()464 const Reference< XColumnsSupplier > xSupplyCols( xListCursor, UNO_QUERY_THROW ); in implInitFilterList()474 while ( xListCursor->next() && ( aProposals.size() < size_t( SHRT_MAX ) ) ) in implInitFilterList()
3114 Reference< XResultSet > xListCursor; in Update() local3141 xListCursor = xStatement->executeQuery(aStatement); in Update()3143 … Reference< ::com::sun::star::sdbcx::XColumnsSupplier > xSupplyCols(xListCursor, UNO_QUERY); in Update()3164 while (!xListCursor->isAfterLast() && i++ < SHRT_MAX) // max anzahl eintraege in Update()3168 xListCursor->next(); in Update()
Completed in 55 milliseconds