https://github.com/dearblue/mruby-unqlite
https://github.com/dearblue/mruby-unqlite
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dearblue/mruby-unqlite
- Owner: dearblue
- License: bsd-2-clause
- Created: 2018-02-11T13:14:28.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-11T15:16:30.000Z (over 7 years ago)
- Last Synced: 2025-02-12T11:34:43.241Z (4 months ago)
- Language: C
- Size: 6.84 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mruby-unqlite : mruby bindings for unqlite (unofficial)
## HOW TO USAGE
```ruby:ruby
filepath = "sample.unqlite"
flags = UnQLite::CREATE
db = UnQLite.open(filepath, flags)db.store("key", "value")
db.append("key", "+appended-value")p ab.fetch("key") # => "value+appended-value"
db.close
```## Specification
* Package name: mruby-unqlite
* Version: 0.1
* Product quality: PROTOTYPE
* Author: [dearblue](https://github.com/dearblue)
* Project page:
* Licensing: [2 clause BSD License](LICENSE)
* Dependency external mrbgems: (NONE)
* Bundled C libraries (git submodules):
* [unqlite-1.1.8](http://unqlite.org/)
under [2-Clause BSD license](https://unqlite.org/licensing.html)
by [Symisc Systems](https://www.symisc.net/)