Sannis / node-mysql-libmysqlclient

Asynchronous MySQL binding for Node.js
http://sannis.github.com/node-mysql-libmysqlclient
Other
229 stars 47 forks source link

Add example of using multiple queries in a single statement to documentation #171

Open henriksjostrom opened 11 years ago

Sannis commented 11 years ago

You can look at the tests for synchronous example: https://github.com/Sannis/node-mysql-libmysqlclient/blob/master/tests/low-level-sync/test-class-mysqlconnection-sync.js#L51-L85

Are you really need async version for this?

SLM-Linus commented 11 years ago

I would really need an async version of this, is it enough to replace the sync in the function names and add an callback with (err, res) parameters?

henriksjostrom commented 11 years ago

Yes, async would be very useful for me.