Skip to content Skip to sidebar Skip to footer

SQLAlchemy+pymysql Error: Sqlalchemy.util.queue.Empty

Trying to run Python3.2, SQLAlchemy0.8 and MySQL5.2 on Ubuntu using Eclispse but I keep getting the error below. Am using pymysql (pymysql3 actually) engine. module monitor from sq

Solution 1:

mysql-connector-python and oursql work fine for me under py3k.

How to install?

$ pip install mysql-connector-python

Usage

Engine = create_engine('mysql+mysqlconnector://<USERNAME>:<PASSWD>@<HOSTNAME>:<PORT>/<DBNAME>')

Solution 2:


Post a Comment for "SQLAlchemy+pymysql Error: Sqlalchemy.util.queue.Empty"