Im using a Run query ativity to execute this query:
DECLARE @texto varchar(4000)
SELECT @texto = ISNULL(@texto + ‘’, ‘’) + ‘Produto: ’ + produto +’-‘+ descr +’, quantidade: ‘+ replace(STR(qnt, 6, 2),’.‘,’,‘)+’ valor unitário:‘+replace(STR(valor,6,2),’.‘,’,‘)+ ’ valor total: ‘+replace(STR(valor*qnt,6,2),’.’,‘,’)+'; '+char(13)
FROM Acor_itens , mixmatrizbi2 where produto = codigo and num =‘6’;
print @texto;
my connection to data base is ok, i have testing other query and it works weel. But this one UiPath just don´t execute. There isn´t a erro mansagem or fail.