README
BrowserSQL
This toolkit aims at helping developing GUI elements for accessing a remote SQL database.
Using BrowserSQL require to pass around the raw access to the database.
One way to achieve such access is to use Ajax (or better, WebSocket) and having a HTTP server forwarding requests to a local database (see https://github.com/lachrist/mariaws for a concreate example).
In this readme the function that materializes such access is called sql ; its takes two arguments:
- A string that should be a SQL query (e.g. "SELECT * FROM CAR;")
- A callback that will receive two arguments:
1. A potential SQL error code (
nullif the query was successfull) 2. An array of tables that are the result of the query (a three-dimensional matrix that is)
There is two ways you can include BrowserSQL within your web page:
- Simply include the file
browsersql.js(https://github.com/lachrist/browsersql/blob/master/browsersql.js) within your web page. The global object will then contain thebrowsersqlobject. - Use
browserify(http://browserify.org/): install this module withnpm install browsersqland get thebrowsersqlobject with the JavaScript line:var browsersql = require("browsersql").
Demonstration
See: (https://github.com/lachrist/browsersql-demo).
API
browsersql.login(authentify): a containerbrowsersql.console(sql):browsersql.kit(onsql, database, viewers, callback):searcher(table, onsearch):selector(table, onselect, oninsert):setter(table, identifier, column):editor(table, identifier):