资 源 简 介
This add-on is now [included in Io main repository.](http://github.com/stevedekorte/io/tree/master/addons/MySQL)
MySQL is a fast, multi-threaded, multi-user SQL database server. IoMySQL is a MySQL binding for Io, by Hong, MinHee.
```
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
```