A thread-compatible interface to the popular MySQL database server that provides the Python database API.

learn more… | top users | synonyms (1)

68
votes
5answers
18k views

Python mysqldb: Library not loaded: libmysqlclient.18.dylib

I just compiled and installed mysqldb for python 2.7 on my mac os 10.6. I created a simple test file that imports import MySQLdb as mysql Firstly, this command is red underlined and the info tells ...
87
votes
9answers
38k views

pip install mysql-python fails with EnvironmentError: mysql_config not found

This is the error I get (mysite)zjm1126@zjm1126-G41MT-S2:~/zjm_test/mysite$ pip install mysql-python Downloading/unpacking mysql-python Downloading MySQL-python-1.2.3.tar.gz (70Kb): 70Kb downloaded ...
85
votes
2answers
30k views

Installing specific package versions with Pip

I'm trying to install version 1.2.2 of the MySQL_python adaptor. The current version shown in PyPi is 1.2.3. Is there a way to install the older version? I found an article stating that this should do ...
14
votes
3answers
3k views

Print the actual query MySQLdb runs?

I'm looking for a way to debug queries as they are executed and I was wondering if there is a way to have MySQLdb print out the actual query that it runs, after it has finished inserting the ...
1
vote
2answers
3k views

Trouble Setting Up MySQLdb Module

I'm pulling my hair out over here trying to set up MySQLdb on my Mac in order to connect to a remote MySQL server. I have installed the latest C MySQL client libraries I have installed XCode 4 I ...
3
votes
4answers
8k views

Installing MySQLdb on Mac OS X

I've spent several hours trying to install MySQLdb (the Python library) on Mac OS X Snow Leopard. I'm using these instructions from SO. I keep getting an error, so I've tried using MacPorts (as one of ...
2
votes
2answers
113 views

How to insert pandas dataframe via mysqldb into database?

I can connect to my local mysql database from python, and I can create, select from, and insert individual rows. My question is: can I directly instruct mysqldb to take an entire dataframe and insert ...
0
votes
1answer
88 views

Python ( mod_wsgi ) script shows “ Internal Server Error ” via web, while via cli it seems to work okay

this is my first time using python. i am trying to connect to a mysql database with python through apache. i created a script named 'test4.wsgi' inside httpd.conf i have DocumentRoot "/0" ...
5
votes
4answers
5k views

GCC-4.2 error on Mac OSX Mountain Lion, unable to install mysql-python

I'm having trouble building MySQLdb on Mac OSX Mountain Lion. After upgrading to OSX Mountain Lion from OSX Lion, I have downloaded and installed Xcode 4.4 also. Then, I went to Preference > Downloads ...
6
votes
2answers
10k views

Python MYSQL update statement

I'm trying to get this Python MYSQL update statement correct(With Variables): cursor.execute ("UPDATE tblTableName SET Year=%s" % Year ", Month=%s" % Month ", Day=%s" % Day ", Hour=%s" % Hour ", ...
4
votes
3answers
7k views

How to install python2.6-devel package under CentOs 5

I need to install mysql-python under python2.6. mysql-python package needs python2.6-devel package that depends on the libpython2.6.so.1.0(64bit) I found on the net some python2.6-devel packages, but ...
1
vote
2answers
252 views

Is there any safe way to parameterize database names in MySQL queries?

I'm writing a little python script to help me automate the creation of mysql databases and associated accounts for my personal projects. Part of this script is a function that takes the database name ...
3
votes
3answers
1k views

Python and mysqldb - How do I check if an insert was successful?

I have this code: cursor = conn.cursor() cursor.execute("""insert into new_files (videos_id, filename, is_processing) values (%s,%s,1)""",(id,filename)) logging.warn("%d",cursor.rowcount) if ...
2
votes
2answers
668 views

Django MySQLdb version doesn't match _mysql version Ubuntu

I'm trying to get a django site deployed from a repository. I was almost there, and then changed something (I'm not sure what!!) and was back to square one. Now I'm trying to run ./manage.py syncdb ...
0
votes
0answers
55 views

MySQLdb usage in cherrpy app leads to massive persistent memory usage on server

UPDATE: I can use fetchone() in a loop to pull down all the data from the database, but if I store it in a list, --- even if I del [obj] afterwards --- the server still says that the object is in ...
42
votes
15answers
26k views

mysql_config not found when installing mysqldb python interface

I am trying to get a Python script to run on the linux server I'm connected to via ssh. The script uses mysqldb. I have all the other components I need, but when I try to install mySQLdb via ...
9
votes
7answers
9k views

mysql-python install problem using virtualenv, windows, pip

I'm trying to install mysql-python in a virtualenv using pip on windows. At first, I was getting the same error reported here, but the answer there worked for me too. Now I'm getting this following ...
4
votes
2answers
1k views

What's the most efficient way to covert MySQL output into a NumPy array in Python?

I'm using MySQLdb and Python. I have some basic queries such as this: c=db.cursor() c.execute("SELECT id, rating from video") results = c.fetchall() I need "results" to be a NumPy array, and I'm ...
9
votes
3answers
11k views

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 default and I am working in a project which runs in Python 2.6, ...
8
votes
1answer
3k views

Using PIP in a virtual environment, how do I install MySQL-python

When I'm in my virtual environment, I attempt to run: pip install MySQL-python This didn't work, so I tried downloading the package and installing it by running: python setup.py install This ...
4
votes
1answer
2k views

Installing MySQLdb for Django on Mac OS X 10.6 Snow Leopard with MAMP

So I know this is not a new topic, but its one that nobody has seemed to be able to solve, at least not for Python 2.6 / Snow Leopard. (The Leopard fixes I've found aren't applicable to Snow ...
2
votes
1answer
196 views

How to store real-time chat messages in database?

I am using mysqldb for my database currently, and I need to integrate a messaging feature that is in real-time. The chat demo that Tornado provides does not implement a database, (whereas the blog ...
1
vote
1answer
763 views

Twisted, MySQLdb and (2006, 'MySQL server has gone away') using Twisted adbapi

In twisted I am a perpetual event loop that is always lookig for a new query to run It polls a SQS queue and are are times where time between queres is long enough to time out and this is the error I ...
0
votes
1answer
6k views

python setuptools installation in centos

i have to install mysqldb module of python in my centos server. i have 2 versions of python 2.4.3 the default one 2.6 which i installed i want to install mysqldb module for 2.6 version of the ...
0
votes
1answer
708 views

Moving large SQL query to NumPy

I have a very large MySQL query in my web app that looks like this: query = SELECT video_tag.video_id, (sum(user_rating.rating) * video.rating_norm) as score FROM video_tag JOIN user_rating ON ...
5
votes
1answer
5k views

ImportError: No module named mysql.base, in django project on Ubuntu 11.04 server

I am following the steps in the Django Book and got to the part where the authors explain hot wo set up a django project to use a database. I chose mysql. My settings in settings.py are: DATABASES = ...
3
votes
1answer
3k views

MySQL-python, error: command 'gcc-4.2' failed with exit status 1

I've been looking around for a solution to this, and there seem to be a lot of different solutions, but none seem to be working. I'm using MySQL-Python to try to get MySQL set up with python. But, ...
2
votes
2answers
2k views

python easy_install: specify directory housing required files

I'm trying to use easy_install to install MySQL-python. It fails almost immediately: _mysql.c:36:23: error: my_config.h: No such file or directory _mysql.c:38:19: error: mysql.h: No such file ...
0
votes
2answers
1k views

How to setup up PYTHON_EGG_CACHE environment variable on Mac?

I am trying to setup Django to use MySQL. I am getting the following error when I type in localhost/mysite ExtractionError at / Can't extract file(s) to egg cache The following error occurred while ...
3
votes
3answers
2k views

Installing python-mysql with wamp's mysql

(I'm not sure if this should be asked here or SU.. but seeing this question on SO, I am asking it here...) I have wamp (mysql-5.1.33) server setup on my vista machine, and I am trying to install ...
2
votes
2answers
355 views

MySQL in Python: UnicodeEncodeError: 'ascii'

Hello I am trying to store a string value to MySQL, and i use db.escape_string() so not to escape special characters. The string is Lala*=#&%@<>_?!:;-'"/()¥¡¿ But when I try to run the ...
2
votes
1answer
1k views

Error installing MySQL-python on a windows 7 box

I'm trying to install django on a windows machine (I swear, it's not my fault). When it comes to the mysqldb module, I keep getting this error: Windows PowerShell Copyright (C) 2009 Microsoft ...
2
votes
3answers
2k views

how to using MySQLdb SELECT with for or while loop

import _mysql as mysql db=mysql.connect('localhost','username','password','database') db.query("""select * from news""") result = db.store_result() print result.num_rows()#two records #how to ...
1
vote
1answer
15 views

UPDATE statement error - MySQLdb/Python

I'm testing an UPDATE statement on an existing record in my test table. It looks like this: term = 'example-column' termInserted = term + '_inserted' mostRecentRecord = 6 nResult = 777 ...
1
vote
1answer
94 views

MySQL: How to update remote webserver with differential data

On my local machine, I maintain several InnoDB tables which are mirror replica of the ones on my web server. Whenever I have new or updated data, I perform that on the local tables. For the updates, ...
1
vote
1answer
220 views

Sleeping Processes in MySQL

I have a series of python scripts that are designed to be long running. When I look at the MySQL process monitor, I see that three of them will always have a time of 0, then 2 of them that I use to ...
1
vote
1answer
177 views

Can I use with statement with MySQLdb.Connection object?

I wonder if I can use the context manager with with the Connection object, and write code like this: with MySQLdb.connect(...) as conn: do_something() Will the conn object be closed ...
1
vote
2answers
162 views

Python MySQLdb error - what is causing this

I am wondering why I am receiving this error: cmd = "INSERT INTO resulttest (category, value, timestamp) VALUES (" + key + ", " + str(value) + ", " + str(timestamp) + ")" c.execute(cmd) db.commit() ...
1
vote
1answer
1k views

ssh first with mysqldb in python

I'm trying to connect to a MySQL database on a remote server using MySQLdb in python. The problem is that first I need to SSH into the host, and then from there, I need to connect to the MySQL ...
1
vote
3answers
2k views

Mac OSX : python packages failed to build because of gcc issues

I am trying to install MySQL-python package with the following error: cc1: error: unrecognized command line option "-arch" cc1: error: unrecognized command line option "-Wno-long-double" error: ...
1
vote
3answers
2k views

Python MySQLdb returns datetime.time and decimal

I have a MySQL queries SELECT mydate, countryCode, qtySold from sales order mydate, countryCode This returns tuples of tuples with values like [[datetime.date(2011, 1, 3), 'PR', Decimal('1')], ...
0
votes
2answers
116 views

Python - Visibility of global variables from imported modules

I've run into a bit of a wall importing modules in a Python script. I'll do my best to describe the error, why I run into it, and why I'm tying this particular approach to solve my problem (which I ...
0
votes
1answer
371 views

MySQL-Python & Django 1.5.0: no module named mysql.base error

I am trying to create database table with Django by python manage.py syncdb and get an error Error was: No module named mysql.base. I know there are many questions like this on the web but none one of ...
0
votes
2answers
767 views

import MySQLdb fails on OS X 10.8.2 (Mountain Lion) with Python 2.7.2 and MySQL [duplicate]

Possible Duplicate: How to install MySQLdb (Python data access library to MySQL) on Mac OS X? Although this question has been asked before here, the question and subsequent answers that are ...
0
votes
1answer
334 views

Why isn't MySQLdb installation working on my 64bit Mac

>>> import MySQLdb Traceback (most recent call last): File "<stdin>", line 1, in <module> File "build/bdist.macosx-10.6-intel/egg/MySQLdb/__init__.py", line 19, in ...
0
votes
1answer
297 views

Errors building mysqldb on Mac OS 10.7, Python 2.7.1

I'm trying to build MySQLdb 1.2.3. I've edited the build configuration to set threadsafe = False, and now, when I build, I see the following: A long list of warnings ala _mysql.c:986: warning: ...
0
votes
2answers
307 views

mysql in python encoding

This post is the same with my question in MySQL in Python: UnicodeEncodeError: 'ascii' this is just to clear things up. I am trying to save a string to a MySQL database but I get an error: ...
0
votes
2answers
2k views

GCC error when installing MySQL_python 1.2.2 (Mac OS 10.6 Snow Leopard)

I'm trying to install MySQL_python 1.2.2 (I specifically need this version, not the current 1.2.3) on Snow Leopard, and getting this error below. Command to install: pip install -Iv ...
-1
votes
3answers
154 views

MySQLdb “SELECT FROM” Login

I am trying to log into my table called acounts using MySQLdb in Python, but it does not work for me. I keep getting my message "Not Logged In". Here is my code: database = ...