https://github.com/iolanguage/mysql
https://github.com/iolanguage/mysql
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/iolanguage/mysql
- Owner: IoLanguage
- License: mit
- Created: 2018-03-11T11:56:59.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-15T13:56:09.000Z (about 8 years ago)
- Last Synced: 2025-01-21T00:48:47.624Z (over 1 year ago)
- Language: C
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MySQL
MySQL is a fast, multi-threaded,
multi-user SQL database server. IoMySQL is a MySQL binding for Io,
by Min-hee Hong.
```Io
my := MySQL establish("localhost", "user", "password", "database")
# Get rows by Map
my queryThenMap("SELECT * FROM rel") foreach(at("col") println)
# Get rows by List
my query("SELECT * FROM rel") foreach(at(0) println)
my close
```
# Installation
`MySQL` should be installed and foundable in your system. Then:
```
eerie installation https://github.com/IoLanguage/MySQL.git
```