sql >> Database >  >> RDS >> Mysql

Ik wil het resultaat uit mysql's connection.query halen en opslaan in de global scope chain in nodejs

Probeer async/wait-syntaxis te gebruiken om uw resultaten te krijgen

  const mysql = require('mysql'); // or use import if you use TS
    const util = require('util');
    const conn = mysql.createConnection({
   host: config.config.mysql.opencart_local.host,
     user: config.config.mysql.opencart_local.user,
      password: config.config.mysql.opencart_local.password,
      database: config.config.mysql.opencart_local.database
     });
    var current_products = [];
    // 
    var query_current_products = 'select * from table;';

    (async function getProducts () => {
      try {
        const rows = await query( query_current_products);
        console.log(rows);
        current_products=rows;
      } finally {
        conn.end();
      }
    })()


  1. MySQL - Hoe BESTELLEN OP RELEVANTIE? INNODB-tabel

  2. Alle tabellen in een Postgres-database afkappen

  3. mariadb-connector J Aurora Snelle failover-implementatie

  4. Verbinding maken met MySQL-server na installatie van XAMPP op Mac OS