I\'m curious to know if meteor can be connected to or display the contents of RDBMS, such as mysql. I have a database that is constantly changing and, if I can use meteor as
Hi currently there is one package Numtel MySQL which not only support MySQL query but it support publication and subscription reactive pattern which is perfect match for running meteor App, We have used this package in our production app.
Sample code for Numtel MySQL package is placed at GitHub.
As meteor backed is Nodejs you can use supported packages like mysqljs and one example article for Meteor app is also posted by robfallows on Meteor blogs.
Hope this will answer your question.