You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

mysql-error-keys

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mysql-error-keys

A list of names of MySQL Error Messages.

0.1.3
latest
Source
npmnpm
Version published
Weekly downloads
43
-32.81%
Maintainers
1
Weekly downloads
 
Created
Source

mysql-error-keys

NPM Version NPM Downloads NPM License Issues

A list of name keys (string, not number) of MySQL error messages.

MySQL has lots of error messages, and it makes you to handle many raw key strings or code numbers in your coding. Here is an example.

authController.signUp({name, email, pwd}).then((res)=>{
    console.log("success!");
}).catch((err)=>{
    if(err.response.data.code === "ER_DUP_ENTRY"){ // this is raw string :(
        console.log("error: email duplicated!");
        return;
    }
});

As you can see, the code uses raw string "ER_DUP_ENTRY". It is not good for coding style and quality.

If you use this list, you can handle error keys as predefined constants to avoid bugs and for better coding style, and you can experience autocomplete of the list in editor of IDEs like Visual Studio Code and JetBrains WebStorm.

Install

$ npm install --save mysql-error-keys

or

$ yarn add mysql-error-keys

Usage

Using Import

import { mek } from 'mysql-error-keys';

authController.signUp({name, email, pwd}).then((res)=>{
    console.log("success!");
}).catch((err)=>{
    if(err.response.data.code === mek.ER_DUP_ENTRY){
        console.log("error: email duplicated!");
        return;
    }
});

or

import { ER_DUP_ENTRY } from 'mysql-error-keys';

authController.signUp({name, email, pwd}).then((res)=>{
    console.log("success!");
}).catch((err)=>{
    if(err.response.data.code === ER_DUP_ENTRY){
        console.log("error: email duplicated!");
        return;
    }
});

Using Require

const mek = require('mysql-error-keys')
authController.signUp({name, email, pwd}).then((res)=>{
    console.log("success!");
}).catch((err)=>{
    if(err.response.data.code === mek.ER_DUP_ENTRY){
        console.log("error: email duplicated!");
        return;
    }
});

or

const { ER_DUP_ENTRY } = require('mysql-error-keys')

authController.signUp({name, email, pwd}).then((res)=>{
    console.log("success!");
}).catch((err)=>{
    if(err.response.data.code === ER_DUP_ENTRY){
        console.log("error: email duplicated!");
        return;
    }
});

Error Message Reference

MySQL Error Message Reference

Please Be a Contributor !

As you know, this module always should be same as the latest version of MySQL Error Messages. MySQL Error Messages might be updated and I might miss it.

So if you find an issue, please feel free to make a pull request and an issue.

GitHub Repository: https://github.com/prettyblueberry/mysql-error-keys

License

MIT

Keywords

mysql

FAQs

Package last updated on 09 Apr 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.