1.1.8 • Published 6 years ago

mysqlr v1.1.8

Weekly downloads
1
License
ISC
Repository
github
Last release
6 years ago

This package will ease your task with mysql

It manage all the data processing issue. Build on top of mysql. So you will get all the basic function

Not Ready, Developing Actully :D

Doc v-1

Basic Init

Import mysqlr
const mysqlr = require('mysqlr');
At the startup u have to init the mysqlr
mysqlr.init({
    host: "localhost",
    user: "root",
    password: "mysql",
    database: "mysqlrTesting"
})

This is for my local database. You can use your own details

Simple right !!!

Oparations

Supporse you have a mysql database and table like below

Database Name mysqlrTesting

Table name: table_1

COL1COL2COL3COL4
dt11dt12dt13dt14
dt21dt22dt23dt24
dt31dt32dt33dt34
dt41dt42dt43dt44
dt51dt52dt53dt54

##Then the query be like

Select Query

with promise

mysqlr.query('SELECT * FROM test1').then(response => {
    consle.log(response)
}):

or with async/await

let qry = await mysqlr.query('SELECT * FROM test1');

Insert Query

let qry = await mysqlr.query("INSERT INTO test1(t1,t2) VALUES ('dt61','dt64')");

Using mysqlr you can just insert a json object like as

   const data = {
                    test1:
                    {
                        t1: 'Hello',
                        t4: 'Hello'
                    },
                }
    mysqlr.jsonInsert(data).then(response => console.log(response))

or

    let qry = await mysqlr.jsonInsert(data));

and... that's it. The Data will be inserted into the database. No Need to take any extra measure. It works like sequelize but at the behide works as normal mysql lib.

Clean table data

Clean all data from a table

let basic_1 = await mysqlr.del('test1')

Remove Specific data/item from table

Here peramitter are

mysqlr.cleanByItem(table_name, colume name, item name)

let basic_1 = await mysqlr.delByItem('test1', 't1', "Hello")

Sample Code 1

mysqlr init will use memory to remember the config. so no needed to init every time. Just init it at the start of the code.

const mysqlr = require('mysqlr');

mysqlr.init({
    host: "localhost",
    user: "root",
    password: "mysql",
    database: "mysqlrTesting"
})

mysqlr.query('SELECT * FROM test1').then(response => {
    consle.log(response)
})

Sample Code 2

filename: start.js

const mysqlr = require('mysqlr');

mysqlr.init({
    host: "localhost",
    user: "root",
    password: "mysql",
    database: "mysqlrTesting"
})

..... other codes

filename: searchQuery.js

const mysqlr = require('mysqlr');

mysqlr.query('SELECT * FROM test1').then(response => {
    consle.log(response)
})

Simple :D

More are coming. Hope this will be AWESOME at the END

1.1.8

6 years ago

1.1.7

6 years ago

1.1.6

6 years ago

1.1.5

6 years ago

1.1.4

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.10

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago