12 lines
238 B
V
12 lines
238 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()
|
||
|
// }
|