Giter Site home page Giter Site logo

Comments (4)

arshidkv12 avatar arshidkv12 commented on June 12, 2024

It is working if I add the following code (each time).

connection.query("SET CHARACTER SET utf8mb4");
connection.query(
  'INSERT INTO emails ( `subject` )   VALUES (" subject 👋" );',
);

from node-mysql2.

sidorares avatar sidorares commented on June 12, 2024

@arshidkv12 can you try using UTF8MB4_GENERAL_CI as charset value?
I suspect your charset is not recognised. If that's the case we should probably warn users

The reason your second example works is that we track state variables updates and is "CHARACTER SET" variable is updated connection knows that - see

if (key === 'character_set_client') {
const charsetNumber = EncodingToCharset[val];
connection.config.charsetNumber = charsetNumber;
}

from node-mysql2.

arshidkv12 avatar arshidkv12 commented on June 12, 2024

I attempted the code below, but it didn't work.

var connection = mysql.createConnection({
    host:  config.DB_HOST,
    user:  config.DB_USERNAME,
    password: config.DB_PASSWORD, 
    database: config.DB_DATABASE,
    charset: 'UTF8MB4_GENERAL_CI'
});

OR

var connection = mysql.createConnection({
    host:  config.DB_HOST,
    user:  config.DB_USERNAME,
    password: config.DB_PASSWORD, 
    database: config.DB_DATABASE,
    charsetNumber:45
});

from node-mysql2.

arshidkv12 avatar arshidkv12 commented on June 12, 2024

How to fix it? Can I set charsetNumber:45 by hardcode?

from node-mysql2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.