“Nodejs MySQL Connection” Ответ

Как управлять подключением DB в JavaScript


//put these lines in a seperate file
const mysql = require('mysql2');

const connection = mysql.createPool({
    host: "localhost",
    user: "",
    password: "",
    database: ""
    // here you can set connection limits and so on
});

module.exports = connection;

//put these on destination page
const connection = require('../util/connection');

async function getAll() {
    const sql = "SELECT * FROM tableName";
    const [rows] = await connection.promise().query(sql);
    return rows;
} 
exports.getAll = getAll;
Alive Anaconda

Nodejs MySQL Connection

var mysql      = require('mysql');
var connection = mysql.createConnection({
  host     : 'example.org',
  user     : 'bob',
  password : 'secret'
});
 
connection.connect(function(err) {
  if (err) {
    console.error('error connecting: ' + err.stack);
    return;
  }
 
  console.log('connected as id ' + connection.threadId);
});
Jerome Scott

Ответы похожие на “Nodejs MySQL Connection”

Вопросы похожие на “Nodejs MySQL Connection”

Больше похожих ответов на “Nodejs MySQL Connection” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования