v/examples/database/mysql.v

16 lines
252 B
V
Raw Normal View History

// import mysql
2019-08-18 16:24:43 +02:00
2020-04-17 21:41:54 +02:00
// fn main() {
2019-08-18 16:24:43 +02:00
// 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-18 00:34:46 +01:00
fn main() {
}