sql >> Database >  >> RDS >> Mysql

node-mysql:Meerdere instructiequery's, ER_PARSE_ERROR

Ik zou proberen de opties in uw config.databaseOptions-object in te stellen, bijvoorbeeld

const config = {
    databaseOptions: {
        host: "some_host",
        user: "some_user",
        password: "some_pw",
        database: "some_db",
        multipleStatements: true
    }
}

Of probeer het gewoon:

config.databaseOptions.multipleStatements = true;

voordat u de pool maakt.

Dit lost de fout voor mij op!

Als ik deze regel weglaat krijg ik dezelfde foutmelding als jij:

ER_PARSE_ERROR: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT..



  1. `actieve' vlag of niet?

  2. Hoe FORMAT() werkt in MariaDB

  3. SELECT INTO OUTFILE gebruiken in MySQL

  4. Python- en MySQL-database:een praktische introductie