Felix Geisendörfer

Results 173 comments of Felix Geisendörfer

> I also need this feature from a security point of view. Your implementation of parameter escaping in JS only is naive (no harm intended - I've written things like...

> and the current implementation of parameter escaping made me think that you may not care about this as much as it deserves to. This is what I mean by...

@dresende I'm re-opening this. The open github issues should list all reasonable suggestions for improvements, this is one of them. @efuquen please go away. People arguing that me not implementing...

Everybody who wants/needs prepared statements, here is your chance: @pyramation contacted me to make this happen, setup a crowd funding campaign, and made an incredibly generous initial donation: https://www.crowdtilt.com/campaigns/prepared-statements-for-nodemysql/description If...

@smitt04 that would be awesome. I did some initial work here: https://github.com/felixge/node-mysql/tree/prepare but never completed it.

Can you provide the output this program produces for you? Could you also set `debug: true` in your connection settings? node-mysql should never block the event loop except for the...

Ok, so you're fetching 22,441 rows with 252 columns each (dude, wtf?), correct? That's 5.6 million columns. Parsing those in 24 second isn't bad : ). And yes, the driver...

Actually, it seems like queued network data blocks timers from firing in node. That's a little annoying, but not much I can do about it. File a bug with node.js...

@mscdex I don't think this is GC related. It simply seems like libuv will always fire network events before any timers. IMO it should be the other way around. Could...

Interesting. Can you show your code, how you use the stream API? Are you passing a callback to the `query()` method? If yes, then streaming won't be enabled.