mysql-live-select icon indicating copy to clipboard operation
mysql-live-select copied to clipboard

NPM Package to provide events on updated MySQL SELECT result sets

Results 15 mysql-live-select issues
Sort by recently updated
recently updated
newest added

Hello, I'm trying to use mysql-live-select but I get this warning when laucnhing: ``` (node:27144) [DEP0096] DeprecationWarning: timers.unenroll() is deprecated. Plea se use clearTimeout instead. ``` This is my code:...

Hello, we are using this package in a Meteor app. The queries to the database work well and are reactive correctly, however we are finding our app bottlenecks after 60-70...

i have a mysql instance running and the example https://github.com/numtel/reactive-mysql-example in place. whenever i execute an `INSERT` the event is shown properly, but when a row is `DELETED` it doesn't.

@numtel What's the procedure to enable binlog on MySQL 5.6 + running on a RDS. There's no my.cnf file on RDS. Basically my bin log files are located at ![Uploading...

Sorry to add this as an issue but cannot find an answer anywhere. I am trying to understand how to pass Mysql data from meteor to react-native using mysql-live-select. I...

node -v: 4.4.7 mysql-live-select: 1.1.9 Result sets do not update to console. Here is code to reproduce: ``` var LiveMysql = require('mysql-live-select'); var settings = { host : 'localhost', user...

What's the best way to use the node-mysql pooling functionality with LiveMysql?

Hi. I have typical node cluster. ``` javascript var cluster = require('cluster'); var numCPUs = require('os').cpus().length; if (cluster.isMaster) { for (var i = 0; i < numCPUs; i++) { cluster.fork();...

I think this is the case at least (kept having issues with permissions) and based on your example for setting up binlog it's not clear if we can use an...