Lines Matching refs:xResult
273 ::utl::SharedUNOComponent< XResultSet > xResult( getMetaData()->getColumns( in refreshColumns()
282 lcl_collectColumnDescs_throw( xResult, m_pImpl->m_aColumnDesc ); in refreshColumns()
330 Reference< XResultSet > xResult = getMetaData()->getPrimaryKeys(aCatalog,m_SchemaName,m_Name); in refreshPrimaryKeys() local
332 if ( xResult.is() ) in refreshPrimaryKeys()
337 const Reference< XRow > xRow(xResult,UNO_QUERY); in refreshPrimaryKeys()
338 while ( xResult->next() ) in refreshPrimaryKeys()
351 ::comphelper::disposeComponent(xResult); in refreshPrimaryKeys()
359 Reference< XResultSet > xResult = getMetaData()->getImportedKeys(aCatalog,m_SchemaName,m_Name); in refreshForgeinKeys() local
360 Reference< XRow > xRow(xResult,UNO_QUERY); in refreshForgeinKeys()
366 while( xResult->next() ) in refreshForgeinKeys()
413 ::comphelper::disposeComponent(xResult); in refreshForgeinKeys()
446 …Reference< XResultSet > xResult = getMetaData()->getIndexInfo(aCatalog,m_SchemaName,m_Name,sal_Fal… in refreshIndexes() local
448 if(xResult.is()) in refreshIndexes()
450 Reference< XRow > xRow(xResult,UNO_QUERY); in refreshIndexes()
454 while( xResult->next() ) in refreshIndexes()
468 ::comphelper::disposeComponent(xResult); in refreshIndexes()