1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/examples/database/mysql.v
Alexander Medvednikov e081791eaf fix repl tests
2019-11-18 02:34:49 +03:00

16 lines
256 B
V

// 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()
// }
fn main() {
}