1.0.1-things-r • Published 4 years ago

@tek-tech/deebee v1.0.1-things-r

Weekly downloads
-
License
SEE LICENSE IN LI...
Repository
github
Last release
4 years ago

deebee

mysql requests made easier for nodejs

example usage

Installation

npm i @tek-tech/deebee

Initialisation

const DeeBee = require('@tek-tech/deebee');

simple connection to a mysql database || connexion simple a une base de donnee mysql

const DeeBee = require('@tek-tech/deebee');
const credentials = {
user:'database_username',
password:'database_password',
database:'database_name',
host:'database_host'
};
const connection = new DeeBee(credentials);
connection.whenReady(
  ()=>{
      //do something with the connection
      //faire quelque chose avec la connexion
  }
)

execute a basic sql request | executer une simple requete

const exec = connection._db();
exec.query(`select * table name`,(error,rows)=>{
 if(error){
   //do something with the error message | on traite l'erreur
 }else{
   //do something with the result | on traite le resultat(rows; stores an array|contient un array)
 }
});

Made-In-Senegal npm.io

1.0.4-pg-0.1

4 years ago

1.0.4-pg

4 years ago

1.0.5-rocks

4 years ago

1.0.4-beta-pg-go

4 years ago

1.0.4-beta-pg

4 years ago

1.0.4-beta

4 years ago

1.0.3-tee-r5

4 years ago

1.0.3-tee-r3

4 years ago

1.0.3-tee-r2

4 years ago

1.0.3-tee-r1

4 years ago

1.0.3-tee-r

4 years ago

1.0.3-tee

4 years ago

1.0.2-ears-r1

4 years ago

1.0.2-ears-r

4 years ago

1.0.2-ears

4 years ago

1.0.1-things-r

4 years ago

1.0.1-things

4 years ago

1.0.1

4 years ago