bug with angular2-meteor app :failed connection to mysql via meteor
NickName:tawfik medhaffar Ask DateTime:2016-03-25T00:26:18

bug with angular2-meteor app :failed connection to mysql via meteor

i'm trying to connect to mysql database with meteor using nodets:mysql and i'm facing this error :

Unhandled rejection Error: No infromation can be fetched by your database, please check your permissions

this is my part of code :

Meteor.startup(function() {

    //Start of changes

    var connectionSettings = {
        host: '127.0.0.1',
        user: 'root',
        password: '',
        database: 'test'
    };

    var db = Mysql.connect(connectionSettings);
})

Copyright Notice:Content Author:「tawfik medhaffar」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/36205181/bug-with-angular2-meteor-app-failed-connection-to-mysql-via-meteor

More about “bug with angular2-meteor app :failed connection to mysql via meteor” related questions

bug with angular2-meteor app :failed connection to mysql via meteor

i'm trying to connect to mysql database with meteor using nodets:mysql and i'm facing this error : Unhandled rejection Error: No infromation can be fetched by your database, please check your

Show Detail

Install gulp in angular2-meteor app

Thanks in advance. I am making an Angular2-meteor app. In the app I want to use Gulp in Angular2-meteor to minify and compile typscript code,but I cant install gulp package. Can u help me please and

Show Detail

How to add correctly use Meteor package in a angular2-meteor project?

I am writing an angular2-meteor program. When I am using urigo:angular2-meteor package, I add reference path like this: /// <reference path="../typings/angular2-meteor.d.ts" /> The questio...

Show Detail

Angular2-Meteor : Database (mysql) closing error

Am using mysql within my angular2-meteor app , am trying to conclude a full transaction including opening , inserting ... and closing my database. i'm confronting a problem of a closed socket which

Show Detail

Using angular2-meteor and useraccounts

I was wondering how one could go about using the useraccounts package with angular2-meteor to create a custom UI for logging in. I was following the tutorial for angular2-meteor (http://www.angular-

Show Detail

angular2-meteor refresh time 30-60s is it normal

I tried to test angular2-meteor project, but any change that I made on the client directory takes about one minute for page refresh. Even small change in html file that should not cause re-transpil...

Show Detail

Is Angular2-Meteor ready for production?

Is Angular-Meteor ready for production? Has anyone successfully build and deployed a working solution using the Angular2-Meteor stack?

Show Detail

How to use $lookup in Angular2-Meteor

I get this error when using $lookup operator in angular2-meteor: Exception from sub tasks id bAJHF7MZzEidGBZ63 Error: Exception while polling query { "collectionName": "tasks", "select.

Show Detail

Issues installing angular2-meteor with npm

Trying to start a new angular2-meteor project using npm install angular2-meteor --save Get a whole bunch of red errors (below) and I am not sure what they mean. I have already done npm install ...

Show Detail

Angular2-meteor load javascript

I use the Angular2-meteor framework but I have a problem when a try to load my javascript file. Meteor load every file in seem time in a want to my js file loading after the html. where I have to...

Show Detail