jayralencar / sqlite-sync.js

Node module to sqlite sync and async
MIT License
78 stars 30 forks source link

Wiki inconsistencies #11

Open JoueBien opened 6 years ago

JoueBien commented 6 years ago

Why are parts of the wiki written in Portuguese? The index of the wiki and the readme is written English but all subpages are written in Portuguese.

The examples have table/attribute names in ALL CAPS which SQLite uses to distinguish reserved words in its notation.

The documentation doesn't provide a delete row example. ie

sqlite.run("DELETE FROM client WHERE id = ?;",[input.id], function(res){

});