myqui

3.0.4 • Public • Published

MyQui

MyQui is a simple, interactive database created for facilitating data management in your company or project created by the Softnoir Corporation.

Installation

You can install this package using the following command:

npm install myqui --save

Documentation

REMINDER: You still can see the documentation at our web. This is a codebox for learning to use MyQui:

const qui = require('myqui')

const db = new qui.Database()

db.createPool({
    id: '23MSdShd',
    name: 'myPool',
    capacity: '2.0 GB',
    user: 'root',
    password: 'mypasswordhahabyebye'
})

db.loadPool('23MSdShd') // execute all the information specified on the createPool funct

db.createDocument('blog')
}) // blog is the name of the database

db.prepare({ key: 'author', value: 'Pau' }) // prepare data for the query function

// insert
db.query('INSERT INTO POOL myPool, DATABASE blog VALUES (author, Pau)')

// select
let o = db.query('SELECT * FROM POOL myPool, DATABASE blog WHERE KEY = author')
 
// evaluate result (check if an object exists)
let r = db.query('EVALUATE RESULT FROM POOL myPool, DATABASE blog WHERE KEY = author')

db.close() // close the connnection to a database

Source code

If you want to change something on this service or recommend something, see our GitHub account.

Changelog

  • 3.0.3 ◆ Changed schemas to documents
  • 3.0.2 ◆ Reinvented the language of queries, added pools technology, schemas technology and close function.
  • 3.0.0 ◆ Added model compatibility and fixed JSON.stringify technology.

Package Sidebar

Install

npm i myqui

Weekly Downloads

4

Version

3.0.4

License

Apache-2.0

Unpacked Size

5.62 kB

Total Files

7

Last publish

Collaborators

  • aidakgm