- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://bitbucket.org/nonplus/websql-js
- 软件文档: https://bitbucket.org/nonplus/websql-js
软件介绍
websql.js 封装了异步的 WebSQL 调用,使用延迟承诺并提供 SQL 工具方法。
示例代码:
<script src="path/to/when.js"></script>
<script src="path/to/websql.js"></script>
// Using a CommonJS Promisses/A implementation:
define(["websql", "when"], function(websql, when) {
websql.config({
defer: when.defer
});
...
})
// Using jQuery Deferred implementation:
define(["websql", "jquery"], function(websql, $) {
websql.config({
defer: $.Deferred
});
...
})
var wsdb = websql("test");
wsdb.read("SELECT * FROM ...");
.then(function(resultSet) { ... });
Game Engine Architecture, Second Edition
Jason Gregory / A K Peters/CRC Press / 2014-8-15 / USD 69.95
A 2010 CHOICE outstanding academic title, this updated book covers the theory and practice of game engine software development. It explains practical concepts and techniques used by real game studios,......一起来看看 《Game Engine Architecture, Second Edition》 这本书的介绍吧!
