Socket
Socket
Sign inDemoInstall

mysql-import

Package Overview
Dependencies
11
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    mysql-import

Import .sql into a MySQL database with Node.


Version published
Maintainers
1
Created

Readme

Source

Version 3.0.2 - Github - NPM

Build Status Coverage Status

Import MySQL files with Node!

Install

$ npm install --save-dev mysql-import

Usage

Include the package.

const mysql_import = require('mysql-import');

mysql-import exposes one method and a version property. mysql_import.version is a string showing the current version of the package.

mysql-import.config(Object settings)

Prepare the package to communicate with your database and handle any errors. This method must be called before importing anything.

The settings object has 4 mandatory parameters and 1 optional parameter.

  • host - (mandatory) The MySQL host to connect to.
  • user - (mandatory) The MySQL user to connect with.
  • password - (mandatory) The password for the user.
  • database - (mandatory) The database to connect to.
  • onerror - (optional) Function to handle errors. The function will receive the Error. If not provided the error will be thrown.

The config method returns a new importer instance.

importer.import(String filename)

Import an .sql file to the database.

The import method returns a Promise which is resolved when the import has completed. This promise is never rejected, if there is an error, the onerror function passed to the config method is called with the error object passed into it.

Example
const mysql_import = require('mysql-import');

const mydb_importer = mysql_import.config({
	host: 'localhost',
	user: 'testuser',
	password: 'testpwd',
	database: 'mydb',
	onerror: err=>console.log(err.message)
});
await mydb_importer.import('mydb.sql');
await mydb_importer.import('mydb2.sql');

// Each database requires it's own importer.
const yourdb_importer = mysql_import.config({
	host: 'localhost',
	user: 'testuser',
	password: 'testpwd',
	database: 'yourdb',
	onerror: err=>console.log(err.message)
});
await yourdb_importer.import('yourdb.sql');
await yourdb_importer.import('yourdb.sql');

Contributing

Contributions are more than welcome! Please check out the Contributing Guidelines for this project.

Keywords

FAQs

Last updated on 03 Oct 2019

Did you know?

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

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc