1.0.1 • Published 8 months ago

quickdb-sql v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
8 months ago

QuickDB SQL EasyConnect

A simple library to connect to a MySQL Database using QuickDB

Install

npm install quickdb-sql

Usage

Library require must be asynchronous

  let db = await require('quickdb-sql')({
    host: "ip",
    user: "mysql_user",
    password: "mysql_password",
    database: "db_name"
});

  let sample = db.table('example');
  await sample.set('lib', 'made by systemm32');

Configuration Object

  • host REQUIRED
  • user
  • password
  • database

Easy MySQL connect using QuickDB by Systemm32!

1.0.1

8 months ago

1.0.0

10 months ago