Hi there
In one method, I need to use more than one queries to the database.
(LOCK table; select ....; update.....; unlock....
I'm using prepared statements but is it smart to enable allowMultiQueries=true
Is this big impact on app security (SQL injection in the first place)

