Lines Matching refs:xRowSet
219 uno::Reference<sdbc::XRowSet> xRowSet = uno::Reference<sdbc::XRowSet>( in DoImport() local
222 if ( !xRowSet.is() ) in DoImport()
225 xRowSet = uno::Reference<sdbc::XRowSet>( in DoImport()
229 uno::Reference<beans::XPropertySet> xRowProp( xRowSet, uno::UNO_QUERY ); in DoImport()
254 uno::Reference<sdb::XCompletedExecution> xExecute( xRowSet, uno::UNO_QUERY ); in DoImport()
264 xRowSet->execute(); in DoImport()
267 if ( xRowSet.is() ) in DoImport()
275 uno::Reference<sdbc::XResultSetMetaDataSupplier> xMetaSupp( xRowSet, uno::UNO_QUERY ); in DoImport()
290 xLocate.set( xRowSet, uno::UNO_QUERY ); in DoImport()
298 uno::Reference<sdbc::XRow> xRow( xRowSet, uno::UNO_QUERY ); in DoImport()
327 xRowSet->beforeFirst(); in DoImport()
333 if ( (bEnd = !xRowSet->next()) == sal_False ) in DoImport()
350 bEnd = !xRowSet->absolute(nRowsRead = nNextRow); in DoImport()
356 if ( !bBookmarkSelection && xRowSet->next() ) in DoImport()
406 ::comphelper::disposeComponent( xRowSet ); in DoImport()