|
Project Information
Featured
Downloads
Links
|
This add-on is now included in Io main repository. 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
|