Can Not Retrieve Nodejs MySQl Data From Database via sub function call
I have two files named login.js
and dbMySql.js
.
login.js
is the main file that will run dbMySql.js
, which is a submodule for the DB connection.
I can run getQuery()
from dbMySql.js
by using object.method call
.
getQuery()
also works fine and retrieves data from the database.
How can I get this data to my Main module from the database module? How can I return res
variable to main function in login.js
module
Code For login.js:
var MySqlConnect = require('./dbMySql');
var app = express();
var dbConnect = MySqlConnect("localhost", "root", "root", "mydb");
dbConnect.getQuery("select * from `test`");
console.log(dbConnect.resD);
Code For dbMySql.js:
function MySqlConnect(dbhost, dbuser, dbpassword, dbname) {
var MySqlConnect = require('mysql');
var con;
this.dbhost = dbhost;
this.dbuser = dbuser;
this.dbpassword = dbpassword;
this.dbname = dbname;
this.resultData = 'Def';
con = MySqlConnect.createConnection({
host: dbhost,
user: dbuser,
password: dbpassword,
database: dbname
})
con.connect(function (err) {
if (err) throw err;
})
function getQuery(query1) {
con.query(query1, function (err, res) {
if (err) throw err;
})
return {
resD: res
};
}
return {
getQuery: getQuery,
};
};
module.exports = MySqlConnect;
I want Retrieved Data in Main module via return method or any that will run successfully.
javascript mysql node.js callback
add a comment |
I have two files named login.js
and dbMySql.js
.
login.js
is the main file that will run dbMySql.js
, which is a submodule for the DB connection.
I can run getQuery()
from dbMySql.js
by using object.method call
.
getQuery()
also works fine and retrieves data from the database.
How can I get this data to my Main module from the database module? How can I return res
variable to main function in login.js
module
Code For login.js:
var MySqlConnect = require('./dbMySql');
var app = express();
var dbConnect = MySqlConnect("localhost", "root", "root", "mydb");
dbConnect.getQuery("select * from `test`");
console.log(dbConnect.resD);
Code For dbMySql.js:
function MySqlConnect(dbhost, dbuser, dbpassword, dbname) {
var MySqlConnect = require('mysql');
var con;
this.dbhost = dbhost;
this.dbuser = dbuser;
this.dbpassword = dbpassword;
this.dbname = dbname;
this.resultData = 'Def';
con = MySqlConnect.createConnection({
host: dbhost,
user: dbuser,
password: dbpassword,
database: dbname
})
con.connect(function (err) {
if (err) throw err;
})
function getQuery(query1) {
con.query(query1, function (err, res) {
if (err) throw err;
})
return {
resD: res
};
}
return {
getQuery: getQuery,
};
};
module.exports = MySqlConnect;
I want Retrieved Data in Main module via return method or any that will run successfully.
javascript mysql node.js callback
Possible duplicate of How do I return the response from an asynchronous call?
– str
Jan 20 at 12:13
add a comment |
I have two files named login.js
and dbMySql.js
.
login.js
is the main file that will run dbMySql.js
, which is a submodule for the DB connection.
I can run getQuery()
from dbMySql.js
by using object.method call
.
getQuery()
also works fine and retrieves data from the database.
How can I get this data to my Main module from the database module? How can I return res
variable to main function in login.js
module
Code For login.js:
var MySqlConnect = require('./dbMySql');
var app = express();
var dbConnect = MySqlConnect("localhost", "root", "root", "mydb");
dbConnect.getQuery("select * from `test`");
console.log(dbConnect.resD);
Code For dbMySql.js:
function MySqlConnect(dbhost, dbuser, dbpassword, dbname) {
var MySqlConnect = require('mysql');
var con;
this.dbhost = dbhost;
this.dbuser = dbuser;
this.dbpassword = dbpassword;
this.dbname = dbname;
this.resultData = 'Def';
con = MySqlConnect.createConnection({
host: dbhost,
user: dbuser,
password: dbpassword,
database: dbname
})
con.connect(function (err) {
if (err) throw err;
})
function getQuery(query1) {
con.query(query1, function (err, res) {
if (err) throw err;
})
return {
resD: res
};
}
return {
getQuery: getQuery,
};
};
module.exports = MySqlConnect;
I want Retrieved Data in Main module via return method or any that will run successfully.
javascript mysql node.js callback
I have two files named login.js
and dbMySql.js
.
login.js
is the main file that will run dbMySql.js
, which is a submodule for the DB connection.
I can run getQuery()
from dbMySql.js
by using object.method call
.
getQuery()
also works fine and retrieves data from the database.
How can I get this data to my Main module from the database module? How can I return res
variable to main function in login.js
module
Code For login.js:
var MySqlConnect = require('./dbMySql');
var app = express();
var dbConnect = MySqlConnect("localhost", "root", "root", "mydb");
dbConnect.getQuery("select * from `test`");
console.log(dbConnect.resD);
Code For dbMySql.js:
function MySqlConnect(dbhost, dbuser, dbpassword, dbname) {
var MySqlConnect = require('mysql');
var con;
this.dbhost = dbhost;
this.dbuser = dbuser;
this.dbpassword = dbpassword;
this.dbname = dbname;
this.resultData = 'Def';
con = MySqlConnect.createConnection({
host: dbhost,
user: dbuser,
password: dbpassword,
database: dbname
})
con.connect(function (err) {
if (err) throw err;
})
function getQuery(query1) {
con.query(query1, function (err, res) {
if (err) throw err;
})
return {
resD: res
};
}
return {
getQuery: getQuery,
};
};
module.exports = MySqlConnect;
I want Retrieved Data in Main module via return method or any that will run successfully.
javascript mysql node.js callback
javascript mysql node.js callback
edited Jan 20 at 13:20
Ondrej K.
3,18361125
3,18361125
asked Jan 20 at 12:11
MORADIYA INFOTECHMORADIYA INFOTECH
12
12
Possible duplicate of How do I return the response from an asynchronous call?
– str
Jan 20 at 12:13
add a comment |
Possible duplicate of How do I return the response from an asynchronous call?
– str
Jan 20 at 12:13
Possible duplicate of How do I return the response from an asynchronous call?
– str
Jan 20 at 12:13
Possible duplicate of How do I return the response from an asynchronous call?
– str
Jan 20 at 12:13
add a comment |
1 Answer
1
active
oldest
votes
Vary Simple Answer I have found by run and execute after efforts.
just pass res form db to callback function parameter and run this fucntion from main module
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54276290%2fcan-not-retrieve-nodejs-mysql-data-from-database-via-sub-function-call%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Vary Simple Answer I have found by run and execute after efforts.
just pass res form db to callback function parameter and run this fucntion from main module
add a comment |
Vary Simple Answer I have found by run and execute after efforts.
just pass res form db to callback function parameter and run this fucntion from main module
add a comment |
Vary Simple Answer I have found by run and execute after efforts.
just pass res form db to callback function parameter and run this fucntion from main module
Vary Simple Answer I have found by run and execute after efforts.
just pass res form db to callback function parameter and run this fucntion from main module
answered Jan 20 at 13:14
MORADIYA INFOTECHMORADIYA INFOTECH
12
12
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54276290%2fcan-not-retrieve-nodejs-mysql-data-from-database-via-sub-function-call%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Possible duplicate of How do I return the response from an asynchronous call?
– str
Jan 20 at 12:13