An open API service indexing awesome lists of open source software.

https://github.com/iolanguage/mysql


https://github.com/iolanguage/mysql

Last synced: about 2 months ago
JSON representation

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
```