Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have imported mysql module in my app.js:

var mysql = require('mysql');

Then I set mysql configuration:

// Database configuration

var HOST            = 'localhost';
var PORT            = 3306;
var MYSQL_USER      = 'root';
var MYSQL_PASS      = 'pass';
var DATABASE        = 'ruchevits_website';

Created mysql client object:

// Create database client

var db = mysql.createClient({
    host:       HOST,
    port:       PORT,
    user:       MYSQL_USER,
    password:   MYSQL_PASS
});

And selected my database:

// Use database

db.query('use ' + DATABASE);

So, now I can execute queries like:

db.query('select id, firstname, lastname from mytable', function(err, result, fields){
    if (err)
    {
        throw err;
    }
    else
    {
        console.log('Selected people:');
        for (var i in result)
        {
            var people = result[i];
            console.log(people.firstname + ' ' + people.lastname);
        }
    }
});

But it is inconvenient to execute all queries in app.js.

I want to execute them in specific routes files in the section:

exports.index = function(req, res)
{
    // MySQL query

    res.render('resume', {
        title: 'Resume'
    });
};

What is the correct way to do that?

I need to use db object not in app.js file. Actually, the question is how to pass it?

share|improve this question

1 Answer

up vote 0 down vote accepted

Create a module and export a function that returns the db object.

in dbConnection.js

var mysql = require('mysql');
var db = null;
module.exports = function () {
    if(!db) {
        db = mysql.createClient({
            host:       HOST,
            port:       PORT,
            user:       MYSQL_USER,
            password:   MYSQL_PASS
        });
    };
    return db;
};

use it with var db = require('./dbConnection'); where ever you need it. Also check out Node.js module caching feature http://nodejs.org/api/modules.html#modules_caching.

share|improve this answer
So obvious, thank you very much! – Edward Ruchevits Aug 27 '12 at 22:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.