Top "Mysql-python" questions

Use this tag for questions about the MySQL-Python database connector library (MySQLdb).

Python MySQLdb - Connection in a class

I am making a Python project where I have to seek and retreive data from a database. I tried making …

python python-3.x mysql-python
"cannot find -lssl; cannot find -lcrypto" when installing mysql-python?

I'm struggling to install the mysql-python pip either systemwide or in a venv on Ubuntu 14.04 with MariaDB 10 installed. Also tried …

pip virtualenv mysql-python mariadb
Unable to install MySQL-python

Okay I recently upgraded from Ubuntu 10.04 to 12.04 Only to be faced by a lot of problems. I am a newbie …

django mysql-python setuptools
How to check if record exists with Python MySQdb

Im creating a python program that connects to mysql. i need to check if a table contains the number 1 to …

python mysql mysql-python
mysql_config not found when installing mysqldb python interface for mariadb 10 Ubuntu 13.10

After I installed Mariadb 10 the Mysql workbench and JPDB client both connect and work fine so next step was get …

python mysql sqlalchemy mysql-python mariadb
error: Setup script exited with error: command 'gcc' failed with exit status 1

I get the following error when I try to install MySQL-python-1.2.3 under Python 2.6 in Fedora 14. Fedora 14 comes with Python 2.7 by …

python mysql-python mysql
How do I check if an insert was successful with MySQLdb in Python?

I have this code: cursor = conn.cursor() cursor.execute(("insert into new_files (videos_id, filename, " "is_processing) values (%s,%…

python mysql-python
"cryptography is required for sha256_password or caching_sha2_password"

Good day. Hope your all are well. Can someone help me with fix this? I'm new to the MySQL environment. …

python mysql cryptography mysql-python
What is the cause of mysqldb's Warning: Truncated incorrect DOUBLE value error?

I am getting many warnings of the same kind -- Warning: Truncated incorrect DOUBLE value: '512121500B' -- but cannot …

python mysql-python
Accessing a MySQL connection pool from Python multiprocessing

I'm trying to set up a MySQL connection pool and have my worker processes access the already established pool instead …

python connection-pooling mysql-python