Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

jSQL is the "official" Javascript Query Language - A database written in Javascript for use in a browser or Node.

License

NotificationsYou must be signed in to change notification settings

Pamblam/jSQL

Repository files navigation

jSQL Logo

jSQL (Official) - Version 3.3.19 -Now available without a prescription!

npm versionBuild StatusInline docsCoverage Status


jSQL is a state and data management tool as well as a robust SQL engine for both Node and the browser. For complete documentation, please seethe jSQL Wiki. For plugins, live demos and other information see theofficial website.

jSQL Layers

Under the hood, jSQL has 3 layers...

  • At the Lowest level, jSQL automatically chooses the best method of storage to save state and interacts directly with it. This layer exposes a persistence method,jSQL.commit(), which is called to serialize and store all data currently in the jSQL database on the user's hard drive. While the app is open and loaded in the browser, this data is serialized and stored within reach in thejSQL.tables object where the library is able to perform operations on it.

  • In the middle, a set of methods are used to buildjSQLQuery objects which execute CRUD commands on the jSQL database and it's tables.(See:jSQL.createTable(),jSQL.select(),jSQL.insertInto(),jSQL.dropTable(),jSQL.update(), andjSQL.deleteFrom())

  • At the highest level, jSQL is an SQL engine (hence the name: Javascript Query Language) which understands a subset of MySQL passed to thejSQL.query() method, which parses ajSQL statement and uses the above methods to createjSQLQuery objects to perform operations on the database.

jSQL is written with flexibility, ease of use, and efficiency in mind. It supports prepared statements, column typing, and can store any kind of data you need it to, including functions and instances of custom objects. It's applications include caching server-sourced data, state persistence, data management and querying and more.


Quick Start

jSQL is implemented in a single JavaScript file. You only need either thejSQL.js file or the minifiedjSQL.min.js file. Feel free to download them directly or usenpm:

npm install jsql-official

If you're running jSQL in a browser, include it in a script tag.

<script src='jSQL.js'></script>

Or use the one hosted on the github.io site:

http://pamblam.github.io/jSQL/scripts/jSQL.min.js

If you're running jSQL in Node,require the jSQL module.

var jSQL = require("jSQL.js");

Create a table

When the database has loaded into memory, you'll want to make sure you have a table to work with. Any database operations that are to be made immediately when the app loads should be called from within thejSQL.load() callback.

jSQL.load(function(){    var sql = "create table if not exists users (name varchar(25), age int)";    jSQL.query(sql).execute();});

Insert into table

At some point, you might want to put some data in that table.

jSQL.query("insert into users ('bob', 34)").execute();

Prefer prepared statements? Just replace values with question marks and pass the values to the execute method in an array.

jSQL.query("insert into users (?, ?)").execute(['bob', 34]);

Select from table

Once you've got the data in there, you're probably going to want to get it back out.

var users = jSQL.query("select * from users where name like '%ob'").execute().fetchAll("ASSOC");

Persisting changes in the browser

When you've made changes or additions to the database, calljSQL.commit() to commit your changes.

For more information and to read about other update, delete and other operations, see thejSQL Wiki.


Documentation & Examples

jSQL is fully documented in thejSQL Wiki, which even includes moresimple usage examples. You may also refer to the package's tests for morecomplete and complex examples. There is also alive demo available on the official website.


Browser Support

Works in basically all browsers. jSQL degrades gracefully because it falls back on cookies for persistence if localStorage, IndexedDB and WebSQL are not available.

While jSQL will work in basically all browsers, these ones are preferred:

FireFoxAndroidSafariChromeSamsungBlackberryIEOperaEdge
2+2.1+3.1+4+4+7+8+11.5+12+

It's Official

In the same way Fedex is Federal.


Thanks to


🇺🇸

About

jSQL is the "official" Javascript Query Language - A database written in Javascript for use in a browser or Node.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp