node-mysql2 icon indicating copy to clipboard operation
node-mysql2 copied to clipboard

:zap: fast mysqljs/mysql compatible mysql driver for node.js

Results 356 node-mysql2 issues
Sort by recently updated
recently updated
newest added

am using mysql2(3.9.2) and am getting the error ```js const DatabaseCon = databaseInstance.createPool({ host: getAppEnv("DB_HOST"), user: getAppEnv("DB_USER"), database: getAppEnv("DB_NAME"), password: getAppEnv("DB_PASSWORD"), connectionLimit: 1000 }); DatabaseCon.prepare(query); $result = await DatabaseCon.execute(query, ...values);...

This _PR_ doesn't change the previously defined coverage percentages. **Codecov** initiates two tests (`project` and `patch`). The `patch` analyzes the percentage file by file, without considering the overall project context,...

Hello, We are using mysql2 version `3.9.7` and MySQL v8.0 also having RDS proxy connected to the DB instance. We are seeing the DB connection is working fine when we...

I'm using version 3.9.7 of `mysql2`, running TypeScript 5.4.3 I'm importing this module with `import mysql from "mysql2/promise";` When I create a `Pool` with `mysql.createPool`, I get my pool and...

typescript

Hey there! I've found what it seems to be a strange bug in the authentication with the database. Whenever the database server is restarted, I am getting an access denied...

Bumps [tsx](https://github.com/privatenumber/tsx) from 4.15.7 to 4.16.0. Release notes Sourced from tsx's releases. v4.16.0 4.16.0 (2024-06-29) Bug Fixes cjs: tsx.require to support core modules (f748e19) Features cjs: improve compatibility with other...

dependencies

Bumps [eslint](https://github.com/eslint/eslint) from 8.57.0 to 9.6.0. Release notes Sourced from eslint's releases. v9.6.0 Features e2b16e2 feat: Implement feature flags (#18516) (Nicholas C. Zakas) 8824aa1 feat: add ecmaVersion: 2025, parsing duplicate...

dependencies

i want to connect to my mariadb and i got Error: Server requests authentication using unknown plugin auth_gssapi_client. See TODO: add plugins doco here on how to configure or author...

feature request

Bumps [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) from 0.397.0 to 0.399.0. Release notes Sourced from lucide-react's releases. New icons 0.399.0 New icons 🎨 logs (#2257) by @​AndreasSas Modified Icons 🔨 cloud-moon-rain (#2250) by @​jguddas New...

dependencies

```js import mysql, { PoolOptions } from 'mysql2'; // version 3.1.0 const options = { user: 'test', database: 'test', // ....... supportBigNumbers: true, bigNumberStrings: true }; const pool = mysql.createPool(options);...