Express を使用してデータベースに接続しようとしています
- 私は Express を初めて使用します (NODEJS を使用したことがあります)。
- データベースに接続して、結果の出力として単純な JSON を表示しようとしています
- 以下のコードを試しました
var express = require('express')
, http = require('http');
var app = express();
var connection = mysql.createConnection({
host: 'localhost',
user: 'root',
password: "root",
database: 'restaurant'
});
// all environments
app.set('port', process.env.PORT || 7002);
app.get('/',function(request,response){
connection.query('SELECT * FROM restaurants', function(err, rows, fields)
{
console.log('Connection result error '+err);
console.log('no of records is '+rows.length);
response.writeHead(200, { 'Content-Type': 'application/json'});
response.end(JSON.stringify(rows));
});
} );
http.createServer(app).listen(app.get('port'), function(){
console.log('Express server listening on port ' + app.get('port'));
});
エラー::
var connection = mysql.createConnection({
^
ReferenceError: mysql is not defined
エラーはmysqlモジュールが存在しないことを示していますが、次を使用してmysqlモジュールをインストールしました::
npm install mysql
それでもエラーに変化はありませ ん