Lines Matching refs:xRowSet
229 uno::Reference<sdbc::XRowSet> xRowSet = uno::Reference<sdbc::XRowSet>( in DoImport() local
232 if ( !xRowSet.is() ) in DoImport()
235 xRowSet = uno::Reference<sdbc::XRowSet>( in DoImport()
239 uno::Reference<beans::XPropertySet> xRowProp( xRowSet, uno::UNO_QUERY ); in DoImport()
264 uno::Reference<sdb::XCompletedExecution> xExecute( xRowSet, uno::UNO_QUERY ); in DoImport()
274 xRowSet->execute(); in DoImport()
277 if ( xRowSet.is() ) in DoImport()
285 uno::Reference<sdbc::XResultSetMetaDataSupplier> xMetaSupp( xRowSet, uno::UNO_QUERY ); in DoImport()
300 xLocate.set( xRowSet, uno::UNO_QUERY ); in DoImport()
308 uno::Reference<sdbc::XRow> xRow( xRowSet, uno::UNO_QUERY ); in DoImport()
337 xRowSet->beforeFirst(); in DoImport()
343 if ( (bEnd = !xRowSet->next()) == sal_False ) in DoImport()
360 bEnd = !xRowSet->absolute(nRowsRead = nNextRow); in DoImport()
366 if ( !bBookmarkSelection && xRowSet->next() ) in DoImport()
416 ::comphelper::disposeComponent( xRowSet ); in DoImport()