Lines Matching refs:xRowSetPropSet
655 Reference< XPropertySet > xRowSetPropSet( xInstance, UNO_QUERY ); in execute() local
656 DBG_ASSERT( xRowSetPropSet.is(), "failed to get XPropertySet interface from RowSet" ); in execute()
657 if (xRowSetPropSet.is()) in execute()
660 … xRowSetPropSet->setPropertyValue( C2U("ActiveConnection"), makeAny( xCurConnection ) ); in execute()
661 … xRowSetPropSet->setPropertyValue( C2U("DataSourceName"), makeAny( aCurDataSourceName ) ); in execute()
662 … xRowSetPropSet->setPropertyValue( C2U("Command"), makeAny( aCurDataCommand ) ); in execute()
663 … xRowSetPropSet->setPropertyValue( C2U("CommandType"), makeAny( nCurDataCommandType ) ); in execute()
664 … xRowSetPropSet->setPropertyValue( C2U("EscapeProcessing"), makeAny( bCurEscapeProcessing ) ); in execute()
665 xRowSetPropSet->setPropertyValue( C2U("ApplyFilter"), makeAny( sal_True ) ); in execute()
666 xRowSetPropSet->setPropertyValue( C2U("Filter"), makeAny( aCurFilter ) ); in execute()
672 … xCurConnection.set( xRowSetPropSet->getPropertyValue( C2U( "ActiveConnection" )), UNO_QUERY ); in execute()