v/examples/database/mysql.v

16 lines
256 B
V
Raw Normal View History

2019-08-18 14:24:43 +00:00
// import mysql
// pub fn main() {
// conn := mysql.connect('localhost', 'root', '', 'mysql')
// res := conn.query('show tables')
// for row in res.rows() {
// println(row.vals.join(', '))
// }
// res.free()
// conn.close()
// }
2019-11-17 23:34:46 +00:00
fn main() {
}