Hi ,
I have declared empty variable s, within db.run, i am concatenating some values from database, if I print , I get the values but when i return s i am getting empty
I am getting output like this
Colombian 101 7.99 0 0
Colombian 101 7.99 0 0
Colombian_Decaf 101 8.99 0 0
Colombian 101 7.99 0 0
Colombian_Decaf 101 8.99 0 0
Espresso 150 9.99 0 0
Colombian 101 7.99 0 0
Colombian_Decaf 101 8.99 0 0
Espresso 150 9.99 0 0
French_Roast 49 8.99 0 0
Colombian 101 7.99 0 0
Colombian_Decaf 101 8.99 0 0
Espresso 150 9.99 0 0
French_Roast 49 8.99 0 0
French_Roast_Decaf 49 9.99 0 0
It is not returning concatenated s, it is returning initial empty s
can anyone help me to get modified s
Thank you