无法从python连接到mysql
Posted
技术标签:
【中文标题】无法从python连接到mysql【英文标题】:Cant connect to mysql from python 【发布时间】:2022-01-19 11:42:24 【问题描述】:我有这段代码正在接收来自 pubnub 的调用,它接收文本,我想将该文本存储在 mysql 数据库中
class MySubscribeCallback(SubscribeCallback):
def message(self, pubnub, message):
messageArray = message.dict
print(messageArray['message']['sender'])
cursor = db.connection.cursor(MySQLdb.cursors.DictCursor)
我在尝试运行我的代码时不断收到此错误
cursor = db.connection.cursor(MySQLdb.cursors.DictCursor)
AttributeError: 'NoneType' object has no attribute 'cursor'
关于问题出在哪里的任何想法?
【问题讨论】:
通过在控制台中打印来确定 db 包含的内容。显然, db 没有“连接”对象。我认为您可能想要“db.cursor”而不是“db.connection.cursor” 我检查了数据库并打印了:您的代码必须如下所示:
from flask import Flask
from flask_mysqldb import MySQL
app = Flask(__name__)
db = MySQL(app)
# Your class/method where db.connection.cursor() is called
if __name__ == '__main__':
app.run() # or app.run(debug=True)
【讨论】:
我已经与数据库建立连接并在其他功能中运行sql代码【参考方案2】:按照以下步骤操作:
-
您需要使用以下命令安装 mysql 连接器
python -m pip install mysql-connector-python
-
以下代码是安装包后可以使用的简单连接
import mysql.connector
mydb = mysql.connector.connect(
host="localhost",
user="yourusername",
password="yourpassword"
)
print(mydb)
【讨论】:
我正在使用 Flask 框架以上是关于无法从python连接到mysql的主要内容,如果未能解决你的问题,请参考以下文章
无法从 MySQL Workbench 连接到 RDS MySQL 数据库
VB.Net 应用程序无法连接到本地 MySQL,但我可以从命令连接