php's-`mysql_fetch_array()`-like actions in node.js?

363 Views Asked by At

I guess node.js' mysql drivers are async, but I'm not really sure what that means, so... The npm module for node.js allows for rows to "stream" or be "gathered up all at once".

Can someone show me where streaming and gathering are applied, and can someone show me how a mysql_fetch_array()-like (from php) operation would be done in node.js?

1

There are 1 best solutions below

2
On

"Streaming" means that you get a callback for each row, with an argument that's an object corresponding to the row. The other option gives you a callback after all the rows have been fetched, with an argument that's an array of objects, each element corresponding to one row. Which one to use depends on how your application logic is structured.

The latter one sounds like what you're looking for, though (again depending on your application logic) it might or might not be the best way to do it.