Posts by Fábio Magagnin • 151 points
3 posts
-
1
votes1
answer175
viewsA: unmount objects in an array
I’m afraid what you want is not possible: In your query you specify that each line will have: pes, Pend, pFis and pJur. Object[10] represents all returned lines. Object[4] represents a return line…
-
0
votes2
answers522
viewsA: Bulk change to MYSQL
I’m not sure I got it right, but if you want to update all the table records, just do an update: update ptv_osrs_properties set show_address = '1';
-
1
votes0
answers645
viewsQ: How to control transactions in Node.js?
I’m starting in Node.js and looked a lot about transaction control, but I haven’t found anything like what I’m used to in Java. First I’ll clarify what I mean by transaction control: Imagine a…