Skip to content

Instantly share code, notes, and snippets.

@clarle
Created July 26, 2012 07:35
Show Gist options
  • Star 80 You must be signed in to star a gist
  • Fork 34 You must be signed in to fork a gist
  • Save clarle/3180770 to your computer and use it in GitHub Desktop.
Save clarle/3180770 to your computer and use it in GitHub Desktop.
Short tutorial on how to use Express and node-mysql
// Module dependencies
var express = require('express'),
mysql = require('mysql');
// Application initialization
var connection = mysql.createConnection({
host : 'localhost',
user : 'root',
password : 'password'
});
var app = module.exports = express.createServer();
// Database setup
connection.query('CREATE DATABASE IF NOT EXISTS test', function (err) {
if (err) throw err;
connection.query('USE test', function (err) {
if (err) throw err;
connection.query('CREATE TABLE IF NOT EXISTS users('
+ 'id INT NOT NULL AUTO_INCREMENT,'
+ 'PRIMARY KEY(id),'
+ 'name VARCHAR(30)'
+ ')', function (err) {
if (err) throw err;
});
});
});
// Configuration
app.use(express.bodyParser());
// Main route sends our HTML file
app.get('/', function(req, res) {
res.sendfile(__dirname + '/index.html');
});
// Update MySQL database
app.post('/users', function (req, res) {
connection.query('INSERT INTO users SET ?', req.body,
function (err, result) {
if (err) throw err;
res.send('User added to database with ID: ' + result.insertId);
}
);
});
// Begin listening
app.listen(3000);
console.log("Express server listening on port %d in %s mode", app.address().port, app.settings.env);
<!doctype html>
<html>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#user-submit').click(function () {
var payload = {
name: $('#user-name').val()
};
$.ajax({
url: "/users",
type: "POST",
contentType: "application/json",
processData: false,
data: JSON.stringify(payload),
complete: function (data) {
$('#output').html(data.responseText);
}
});
});
});
</script>
</head>
<body>
<h3>Enter a username to enter into the database:</h3>
<input id="user-name" type="text" />
<input id="user-submit" type="submit" />
<p id="output"></p>
</body>
</html>
{
"name": "reddit-node-mysql"
, "description": "A demo of how to use Express and MySQL together"
, "author": "Clarence Leung <github@clarle>"
, "version": "0.0.1"
, "private": true
, "dependencies": {
"express": "~2.5",
"mysql": "~2.0"
}
}
@NaturalBridge
Copy link

Hey Clarence, I couldn't get this one to run (I think because of the various changes in middleware, etc... even though I'm using the suggested Express version). It looks very sweet and compact though, can't wait to see the updated one, thanks!

TypeError: Arguments to path.join must be strings
at path.js:360:15
at Array.filter (native)
at exports.join (path.js:358:36)
at exports.send (/home/user1/workspace/nodemaria/node_modules/express/node_modules/connect/lib/middleware/static.js:129:20)
at ServerResponse.res.sendfile (/home/user1/workspace/nodemaria/node_modules/express/lib/response.js:186:3)
at /home/user1/workspace/nodemaria/app.js:39:9
at callbacks (/home/user1/workspace/nodemaria/node_modules/express/lib/router/index.js:272:11)
at param (/home/user1/workspace/nodemaria/node_modules/express/lib/router/index.js:246:11)
at pass (/home/user1/workspace/nodemaria/node_modules/express/lib/router/index.js:253:5)
at Router._dispatch (/home/user1/workspace/nodemaria/node_modules/express/lib/router/index.js:280:5)

@thembamalungani
Copy link

Nice easy to follow demo

@mikeLspohn
Copy link

Thanks for this 👍 And ohadpartuck if you wanted to move connection into a separate file you could just place it in, say, connection.js and in that file module.exports = connection then connection = require('./connection.js') in your main app.js file.

@seokochin
Copy link

Its not working for me, So I just change

res.sendfile( '/index.html' , {root:__dirname}); //instead of res.sendfile( __dirname + '/index.html' );

@stackedactors1
Copy link

How do you pass an object to the view in a regular page load? NOT an ajax call. That object (of course) came from the mysql database. I'd imagine its something like this:

app.get('/', function(req, res) {
res.sendFile(__dirname + '/public/index.html', {fromdb: 'list of records'});
});

let me know how to do this. thanks.

@Hervinho
Copy link

I get this error:
jquery.min.js:4 XMLHttpRequest cannot load file:///C:/api/users/insert. Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https, chrome-extension-resource.

How do I fix it?

@sunilsinh
Copy link

Thanks,
But i want to bind data from mysql to html page.

@kazup01
Copy link

kazup01 commented Feb 11, 2017

Thanks nice demo!

@francistito
Copy link

nice demo for we bigginers

@ctosid
Copy link

ctosid commented Jun 26, 2018

Sorry im starting out with node so pardon me!..
Don't you think there need to be statement which closes the connection like connection.end()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment