Mysql
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Mysql

Tôi muốn lấy kết quả từ connection.query của mysql và lưu nó vào chuỗi phạm vi toàn cầu trong nodejs

Cố gắng sử dụng cú pháp async / await để nhận kết quả của bạn

  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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. lỗi cú pháp từ CREATE USER với các biến cung cấp tên người dùng và mật khẩu

  2. Dữ liệu mùa xuân jpa findByDate luôn trả về một danh sách trống

  3. MySQL - CHỌN NHƯ ở ĐÂU

  4. PHP:chèn nhiều giá trị hộp kiểm vào một cột MySQL

  5. Hiểu về kích thước lưu trữ cho kiểu dữ liệu MySQL TEXT