Tagged Questions

6
votes
2answers
2k 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 ...
5
votes
3answers
165 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 ...
4
votes
2answers
104 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 ...
4
votes
3answers
166 views

MySQLdb Best Practices

I'm currently developing a Python script that does a few things with some data pulled from a MySQL database. To access this data, I'm using the module MySQLdb. This module follows the guidelines laid ...
3
votes
2answers
65 views

Does a transaction start even on SELECT?

I read in the docs : ...since transactions start when a cursor execute a query, but end when COMMIT or ROLLBACK is executed by the Connection object. import MySQLdb db = ...
3
votes
1answer
57 views

How can I inform sqlalchemy to raise error whenever MySQL throws warning?

I want to update sqlalchemy settings to raise an exception on warnings... for example when I insert larger amount of data in field then column length, mysql will truncate the data and inserts ...
3
votes
2answers
803 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
289 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
290 views

Python MySQLdb: When to close cursors

I'm building a wsgi web app, and I have a mysql database. I'm using MySQLdb, which provides cursors for executing statements and getting results. What is the standard practice for getting and closing ...
3
votes
3answers
1k 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
1answer
54 views

How to add mysql-python image path to crontab

Crontab always try to load mysql-python image from my home directory, while the library image is actually in /Library/Python/2.7/site-packages/MySQL_python... How can I point crontab to the right ...
2
votes
1answer
63 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
2answers
80 views

Trying to check if value already in MySQL DB

I am writing a script that will run every 20 minutes that looks for files to download but I want to check if I have already dowloaded the file: First my code executes this command: ...
2
votes
1answer
648 views

Python, Brew, and MySQLdb

I have been running python from a brew install. I went to install the mysql_python egg with setup tools (standard install according to mysql_python instructions) and it installed to ...
2
votes
1answer
93 views

Python, mysqldb and unicode

I'm having trouble to get unicode values out of mysql queries. Here is how I do it now: >>> from MySQLdb import connect >>> from MySQLdb.cursors import DictCursor >>> con ...
2
votes
0answers
168 views

Debugging a world of hell when trying to install MySQL-Python on Mac OS X [closed]

I've been trying for weeks and weeks to install MySQL-python with absolutely no luck, on Mac OS X 10.6 with Python 7.0 from the Enthought Python Distribution. Many of the issues I ran into have been ...
2
votes
2answers
71 views

Can't execute mysql insert using pythons mysqldb

This is my first question on stackoverflow! I'm currently programming a steamcommunity crawler, which crawls through the steam profiles and saves things like owned games, steamname, friends, ... But ...
2
votes
4answers
284 views

Python to SQL: list of lists

I am currently facing a problem in exporting a python list of list into mySQL DB. Iam using MySQLdb for the same and utilising the executemany command. For example, I have a list of list: ...
2
votes
3answers
867 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
719 views

Create chart/statistics for selected mysql table through python

I'd like to start by asking for your opinion on how I should tackle this task, instead of simply how to structure my code. Here is what I'm trying to do: I have a lot of data loaded into a mysql ...
1
vote
2answers
21 views

Connecting to MySQL via Python MySqlDb (1045 error)

I am using Python 2.7 on OSX Lion and can't connect to a remote SQL Db on Python. I get the following error: Traceback (most recent call last): File "connectDB.py", line 39, in <module> main() ...
1
vote
1answer
32 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
2answers
25 views

mysql-python fetchrow brings: TypeError: 'long' object is not callable

I got a table: +-----------+-------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-----------+-------------+------+-----+---------+-------+ | ...
1
vote
1answer
42 views

installing MySQLdb on mac

I have MAMP already installed in my mac. So the mysql in MAMP is running just fine. But when i try to install mysqldb , I get the following error Traceback (most recent call last): File "setup.py", ...
1
vote
3answers
114 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
40 views

Why do I get an error when running mysqld in a virtualenv?

When I run mysqld in my virtualenv I get an error and abort message. (nettuts)sez@sez-laptop:~/.virtualenvs$ mysqld 111220 15:22:59 [Warning] Can't create test file ...
1
vote
2answers
55 views

MongoDB or MySQL database

I have a question about making the decision whether to use MySQL database or Mongo database, the problem with my decision is that I am highly depending on these things: I want to select records ...
1
vote
1answer
26 views

MySQL-Python character encoding exception on db insert

I am getting the following Exception when trying to save a row to a db: Unexpected error: (<type 'exceptions.UnicodeEncodeError'>, UnicodeEncodeError('latin-1', u"First 'A\u043a' Last", 7, 8, ...
1
vote
2answers
36 views

How to know if it is unsigned of a field from mysql by MySQLdb

I use MySQLdb(a python library) to talk with mysql. Is there some way to get the field type using MySQLdb , and the most important thing is how can I know it is unsigned or not ? I know we can use ...
1
vote
1answer
114 views

python issues with MySQL in eclipse

Example: import MySQLdb conn = MySQLdb.connect(passwd="passwd", db="mydb") cursor = conn.cursor() cursor.execute("""SELECT * FROM table""") records = cursor.fatchone() print records provides the ...
1
vote
1answer
83 views

Error installing mysql-python module on Win7 & Python 2.7

Whatever I try : downloading the tarball archive of mysql-python and running python setup.py install, or using easy_install mysql-python, I got the same error which is, (translated from French) : ...
1
vote
1answer
223 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 ...
1
vote
2answers
240 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
44 views

Are there any widely used wrappers/API's for MySQL in python?

I'm a PHP guy trying out Python with cherryPy. Whenever I work with PHP I use my own simmple wrapper for mysql functions in a form of a class to make things easier to maintain. There is also PDO layer ...
1
vote
2answers
118 views

MySQL statement in Python: Variables don't work

I have a problem with MySQL and Python's MySQLdb when I try to INSERT more than one variable. I have a table wordurl with three fields. The first one is an auto_increment ID, second and third should ...
1
vote
1answer
107 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
2answers
192 views

force mysqldb dict cursor to return prefix all column names with table name

SELECT * FROM a, b WHERE ... Mysql allows duplicate column names in the results of a query. So, in the terminal, none of the column names are prefixed using the above query. However, I'm using ...
1
vote
3answers
190 views

Installing MySQLdb Python Architecture Error

I am trying to install MySQLdb python and am having trouble getting it to work because I get an architecture error. >>> import MySQLdb Traceback (most recent call last): File ...
1
vote
2answers
123 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 ...
1
vote
2answers
77 views

Python MySQLdb unique records, ignore errors

I'm trying to insert records to my db from an array : for string in self.FinalMailsArray: c.execute("""INSERT INTO table (email) VALUES(%s) """,(string)) The problem is, that I want ...
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 = ...
1
vote
3answers
411 views

Python and MySQL connection problems (mysqldb api)

I have config.ini: [mysql] host=localhost port=3306 user=root passwd=abcdefgh db=testdb unix_socket=/opt/lampp/var/mysql/mysql.sock I have this class: #!/usr/bin/python import MySQLdb,ConfigParser ...
1
vote
2answers
168 views

Better way to write this SQL in Python

Is there anyway I can reduce the duplication of my arguments? For example, timepattern is repeated 4 times and it gets hard to keep track of queries that are big. sql = ( "SELECT ...
1
vote
1answer
1k 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 ...
1
vote
2answers
1k 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 ...
1
vote
2answers
3k 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, ...
1
vote
3answers
188 views

How to retrieve table names in a mysql database with Python and MySQLdb?

I have an SQL database and am wondering what command you use to just get a list of the table names within that database.
1
vote
3answers
436 views

combining two select statements to return one result

I need to combine the results for two select queries from two view tables, from which I am performing calculations. Perhaps there is an easier way to perform a query using if...else - any pointers? ...
1
vote
0answers
1k views

Using MySQL in Pydev Eclipse

I am trying to access a MySQL database with python through Pydev Eclipse. I have installed the necessary files to access MysQL from python and I can access the database only when I write code in ...
1
vote
2answers
2k views

MySQL-python 1.2.3 and OS X 10.5: 64- or 32-bit?

I've been happily using Django and MySQL in development on an existing machine running OS X 10.4 Tiger, and have set up a similar environment in 10.5 Leopard on a new 64-bit MacBook, with a working ...

1 2 3