What are the differences between mysql-connector-python, mysql-connector-python-rf and mysql-connector-repackaged?

The main differences between them are: mysql-connector-repackaged: is old, do not use it mysql-connector-python 2.0.4: is the original uploaded by MySQL. But it has the problem that does not works with Django >= 1.8. MySQL did not upload yet their stable version 2.1.3 to this repo. mysql-connector-python-rf 2.1.3: is the solution to all your problems … Read more

python mysql.connector DictCursor?

According to this article it is available by passing in ‘dictionary=True’ to the cursor constructor: http://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursordict.html so I tried: cnx = mysql.connector.connect(database=”bananas”) cursor = cnx.cursor(dictionary=True) and got: TypeError: cursor() got an unexpected keyword argument ‘dictionary’ and I tried: cnx = mysql.connector.connect(database=”bananas”) cursor = cnx.cursor(named_tuple=True) and got: TypeError: cursor() got an unexpected keyword argument ‘named_tuple’ and … Read more