所以,我今天刚开始使用python。我安装了python-mysql.connector
所以我可以开始编写一些查询并在python中使用结果,然后将一些数据输出到lcd屏幕。
知道这就是我的......
#!/usr/bin/python
import Adafruit_CharLCD
import mysql.connector
class LCDTests:
def __init__(self):
self.lcd = Adafruit_CharLCD;
#self.lcd.begin(16,1);
try:
cnx = mysql.connector(user = '', password='' database='', host='')
except mysql.connector.Error, e:
try:
print "MySQL Error [%d]: %s" % (e.args[0], e.args[1])
except IndexError:
print "MySQL Error: %s" % str(e)
else:
cnx.close()
def run(self):
print('alex')
#lcd.message('loading...');
test = LCDTests()
test.run()
但是当我运行./test.py
时,我会继续获得以下输出:
Traceback (most recent call last):
File "./test.py", line 31, in <module>
test = LCDTests()
File "./test.py", line 16, in __init__
cnx = mysql.connector(user = '...', password='...', database='...', host='...')
TypeError: 'module' object is not callable
在搜索问题时,我发现的任何内容都没有真正帮助我解决问题......问题可能出在哪里?
答案 0 :(得分:2)
mysql.connector.connect(...)
不是mysql.connector(...)
module docs可能是您的好资源。
答案 1 :(得分:1)
proper syntax为mysql.connector.connect(user, password, host, database)
。
答案 2 :(得分:0)
你有一个错字。目前,您正在引用模块mysql.connector而不是模块中的Connect类。尝试
mysql.connector.Connect(...)