我想练习在python脚本中使用MySQL查询的技巧。
起初我正在使用脚本,它将能够从我的sql
服务器获取所有数据库(我正在使用ubuntu)。
我写过:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import MySQLdb as mdb
import sys
try:
con = mdb.connect('localhost', 'testuser', 'testuser', 'test')
cursor = con.cursor()
cursor.execute("SHOW DATABASES;")
for row in cursor:
print row
except mdb.Error, e:
print "Errot %d: %s" % (e.args[0], e.args[1])
sys.exit(1)
finally:
if con:
con.close()
它返回:
('information_schema',)
('test',)
While I have more that that 2 databases - Output from mysql console is:
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| test |
| test1 |
+--------------------+
你能告诉我一些我做错的事吗?