Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

308
Views
SQL and JS, how i can read text from SQL (discord)

I'm writing code for Discord, this is my code:

var mysql = require('mysql');
var con = mysql.createConnection({
    host: "localhost",
    user: "root",
    password: "",
    database: "mydb"
});

    var name = 'name';
    var id = '1';
    var sql = 'SELECT * FROM customers WHERE name = ? OR id = ?';
    con.query(sql, [name, id], function(err, result) {
        if (err) throw err;
        console.log(result);
});

The code works and it shows me what I have in the table, now I want to design it nicely, and I have the following design:


client.on('message', message => {
if (message.content.startsWith(prefix + [name])) {
           const logo = ''
           const embed = new MessageEmbed()
               .setTitle("name is: " + [name])
 }
  message.channel.send(embed);
});

Now it's working. But my problem is that I want it to be offered to me from SQL.

This means that instead of the name I have listed every name I want I want to get results from SQL in case there is no result that will show me an error message.

Can anyone help me on this?

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!