Tagged Questions

4
votes
2answers
143 views

Errors When Installing MySQL-python module for Python 2.7

I'm currently trying to build and install the mySQLdb module for Python, but the command python setup.py build gives me the following error running build running build_py copying ...
3
votes
2answers
839 views

Django + OsX Lion + Mysql with XAMPP

I have the following on my MacBook with Osx Lion: Mysql running with xampp (http://www.apachefriends.org/it/xampp.html) Django 1.3 running in a virtualenv I installed Mysql-python with pip install ...
3
votes
2answers
362 views

What actually is pymysql and how it differs from mysqldb? And how can it affect on my Django deployment?

Problem running manage.py sync db in django 1.3 was solved using pymysql instead of mysqldb. I also replaced it in django. I followed this tutorial: ...
3
votes
2answers
707 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
73 views

Executing different queries using mysql-python

I'm working with a remote db for importing data to my Django proyect's db. With the help of MySQLdb I've managed with ease to create an importing function like the following: def ...
2
votes
3answers
952 views

Error configuring django with python-mysql in Mac OS 10.6.6

My Setup: Mac OS 10.6.6 - x86_64 MySQL 5.5.8 Python 2.7.1 Django 1.2.5 mysql-python installed via easy_install My situation: I've been struggling to get my setup to work. The problem is with the ...
2
votes
2answers
3k views

Django on CentOS

I'm looking to use Django on a shared host that's running an unknown version of CentOS. My main problem is trying to interface with a database. The server has MySQL installed, but not MySQL-python. I ...
1
vote
0answers
50 views

mysql server gone away (error #2006)

Running Django 1.3 over wsgi on apache 2.2.9/Debian, and using mysql 5.0.51a I encountered the following problem, both in the deployed django installation and in both development servers we had ...
1
vote
1answer
34 views

Composite database in django

I have a database, financials that has models created in django. In addition, it has other tables that were created for a python script that uses MySQLdb, and thus not in django. The python script ...
1
vote
1answer
119 views

Django Dev Environment Broken Following Mac OS 10.7 Reinstall

I recently experienced trouble with my hard drive and used Disk Utilities to reinstall Mac OS 10.7 Lion. When I went to run my Django app, I got the following errors: ################ BEGIN ERRORS ...
1
vote
3answers
169 views

Mysql Can't create/write to file error#13

I had created a Django view which is returning some data after reading from MySql DB.When i try and fetch around 6000 rows from the Database,everything works fine and the view returns HttpResponse as ...
1
vote
2answers
272 views

Having an issue with setting up MySQLdb on Mac OS X Lion in order to support Django

So I am pretty sure that I have managed to dork up my MySQLdb installation. I have all of the following installed correctly on a fresh install of OS X Lion: phpMyAdmin MySQL 5.5.16 Django 1.3.1 ...
1
vote
1answer
126 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 ...
1
vote
1answer
1k 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 = ...
0
votes
2answers
60 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 ...
0
votes
1answer
32 views

Django: “show databases” functionality?

I have a weird legacy database use-case: I have multiple databases, with (1) exactly the same schema, but (2) very different datasets. Databases, entire databases, with this schema, are being added ...
0
votes
1answer
165 views

Django Persistent DB connections - A different approach

I have gone similar threads like Django persistent database connection and other stuff on same topic. However Django doesn't officially support persistent connections to MySQL and Mongo(to my limited ...
0
votes
1answer
151 views

Django db.connection.cursor.fetchone() returns emty result, when raw SQL doesn't

I have method in a cusom QuerySet that performs raw SQL query to database. class QuerySet(models.query.QuerySet): def get_short(self, language_code='en'): """Returns shortest name for ...
0
votes
0answers
74 views

Django error (cursor.description is None) in raw query: TypeError: 'NoneType' object is not iterable

Issuing a Django 1.3 ORM query using the 'raw' query method raises an exception sometimes. I'm not sure what condition causes it to raise an exception, and I can't reliably reproduce it. (Although ...
0
votes
2answers
118 views

MySQLdb problems in django

I installed mysql-python on 64bit snow leopard,and it's good under python IDE,but failed import in django. Anyone had meet similar question? File ...
0
votes
2answers
110 views

Problems getting Django up and running on OSX

First, I'm following the tutorial on the Django Poll application on their site and have hit a few road blocks. I've installed Python 2.7 and Django 1.3 Created a new project with django-admin.py ...
0
votes
2answers
181 views

Mysql-python not installed with bitnami django stack? “Error loading MySQLdb module: No module named MySQLdb”

So I installed Bitnami Django stack, hoping as proclaimed 'ready-to-run' versions of python and mysql. However, I can't get python to syncdb: "Error loading MySQLdb module: No module named MySQLdb" I ...
0
votes
2answers
303 views

Deploying mod_wsgi: Error loading MySQLdb module

I want to deploy my django app using apache + mod_wsgi again. I seem to be getting this error 500 message Initially, I was told that I need the latest version of MySQLdb. After I had installed, I got ...
0
votes
0answers
328 views

WSGI: _mysql.so Image not found

Environment: MacBook Pro, OSX 10.6, Python 2.6.1 64 bit, MySQL 5.X 64 bit I am having problems installing MySQLdb for use with Django. After installing everything I am able to open the python ...
0
votes
2answers
502 views

Problem with Django syncdb on Amazon EC2

I'm trying to deploy my project on my EC2 instance. When I run python manage.py validate I get this error Error: No module named mysql.base . I have already installed MySQL-python using yum install ...
-1
votes
1answer
82 views

mysqldb environment [closed]

root@dicksonxavier-desktop:/home/dicksonxavier/Downloads/MySQL-python-1.2.3# python setup.py build sh: mysql_config: not found Traceback (most recent call last): File "setup.py", line 15, in ...