Having trouble connecting to a MySQL database with Meteor using nodets:mysql and encountering the following error message:
Unhandled rejection Error: No data can be retrieved from your database, please verify your permissions
Here's the snippet of code:
Meteor.startup(function() {
//Start of modifications
var connectionSettings = {
host: '127.0.0.1',
user: 'root',
password: '',
database: 'test'
};
var db = Mysql.connect(connectionSettings);
})