https://github.com/iolanguage/sqlite3
https://github.com/iolanguage/sqlite3
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/iolanguage/sqlite3
- Owner: IoLanguage
- License: bsd-3-clause
- Created: 2018-03-11T12:00:30.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-16T18:50:37.000Z (about 8 years ago)
- Last Synced: 2025-03-14T05:44:34.813Z (over 1 year ago)
- Language: C
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SQLite3
SQLite provides a embedded simple and fast
(2x faster than PostgreSQL or MySQL) SQL database.
See http://www.hwaci.com/sw/sqlite/ for details.
It's SQL command set is described
at http://www.hwaci.com/sw/sqlite/lang.html.
SQLite was written by Dr. Richard Hipp who offers consulting
services for custom modifications and support of SQLite.
Example:
```Io
db := SQLite clone
db setPath("myDatabase.sqlite")
db open
db exec("CREATE TABLE Dbm (key, value)")
db exec("CREATE INDEX DbmIndex ON Dbm (key)")
db exec("INSERT INTO Dbm ('key', 'value') VALUES ('a', '123')")
db exec("INSERT INTO Dbm ('key', 'value') VALUES ('a', 'efg')")
rows := db exec("SELECT key, value FROM Dbm WHERE key='a'")
db exec("DELETE FROM Dbm WHERE key='a'")
rows := db exec("SELECT key, value FROM Dbm WHERE key='a'")
db close
```
# Installation
SQLite should be installed and foundable in your system. Then:
```
eerie install https://github.com/IoLanguage/SQLite3.git
```