https://github.com/felixge/node-mysql#custom-format
Does changing this method effect all connections in a pool?
Does it effect only the current connection? If so, when I release it back into the pool, will it continue to have the modified method when it is used by another routine? If so, how do I reset it back to it's default?
I want to use queryFormat to allow for hash parameters like the example shows. But, the issue is that I already wrote so much code that uses arrays. I could modify the example to allow either arrays or hashes. All-in-all, I'd still like to know more about how modifying this method effects the connection and pool.