Tagged Questions

7
votes
2answers
3k views

pip install mysql-python show error

this is my error : (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 ...
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
1answer
133 views

MySQLdb Python connector building and installation command 'gcc-4.2' failed with exit status 255

I'm running Mac Lion. I've installed python 2.7.2 and django 1.3.1. Both of them work fine. To make python work with mysql, I have to install MySQL-python-1.2.3 -- but I can't get the build to work. ...
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
69 views

Parallelizing reads from MySQL database via Python

I need to read data from a huge table (>1million rows, 16 cols of raw text) and do some processing on it. Reading it row by row seems very slow (python, MySQLdb) indeed and I would like to be able to ...
4
votes
2answers
197 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 ...
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 ...
4
votes
3answers
3k 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 ...
4
votes
3answers
270 views

Error Installing Python MySQLdb on Windows 7

Please see the following stacktrace, is this a permissions issue? C:\Project\MySQL-python-1.2.3>python setup.py Traceback (most recent call last): File "setup.py", line 15, in <module> ...
3
votes
2answers
66 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
150 views

Python 2.7 not in /usr/bin

I'm certain this is a very basic question, but it's causing me a lot of issues. I'm trying to install MySQLdb with Python 2.7, the error I'm getting looks like this: gcc -pthread ...
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
3answers
436 views

MySQL server has gone away - Elixir/SQLAlchemy - Disconnect handling via checkout event handler doesn't work

Update 3/4: I've done some testing and proved that using checkout event handler to check disconnects works with Elixir. Beginning to think my problem has something to do with calling session.commit() ...
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
397 views

Problem passing Tuple to MySQLdb in python

I have some sql queries that work through python mysqldb to my mysql database, but i want to make them a little less sql-injection vulnerable so little bobby tables doesn't try to add data.. for ...
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
1answer
731 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 ...
3
votes
6answers
5k 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 ...
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
3answers
51 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
1answer
32 views

Connecting to MySQL using python without installing Mysql

Thanks for reading this. I am working on a project that involves database sync with python. The remote machine is a linux machine with MySQL. The client does not want me to install anything except ...
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
67 views

unicode in python turns into '\xXX\xXX'

i'm using MySQLdb,i use: cursor.execute(QUERY) where QYERY is: 'INSERT (A,B,C) VALUES("%s","%s",something);'%(k1, u'W') w is an arabic letter (literally it is! i just replaced it with W in case ...
2
votes
1answer
183 views

Fast way to convert array to tuple/list in python?

It seems like the time it takes to convert an array to a tuple scales linearly with the the length of the array. Is there a way to do this more efficient? I need to insert arrays with 5e+6 elements ...
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
1answer
57 views

double loop in psp/python/html from a mysql query

I'm trying to program a script that will take in a user input of a place they want to go, starting with the country. Then take the user's input and update my list of which state is in the country ...
2
votes
2answers
80 views

Python's MySQLdb slow! using 'SSCurso'r vs PHP's 'mysql_fetch_assoc'

I need to go over an entire table in Python. I am using MySQLdb via 'SSCursor' and it is much slower than PHP's stuff. PHP 5.3.5 $result = mysql_query("SELECT * FROM anytable"); while($row = ...
2
votes
1answer
68 views

How to get matched Rows from MySQLdb.cursors.Cursor python2.6

I'm working with python2.6 and MySQLdb. I have a table with this data +----+--------+ | id | status | +----+--------+ | 1 | A | | 2 | B | | 3 | B | +----+--------+ I want to do an ...
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
2answers
100 views

Proper way to establish database connection in python

I have a script with several functions that all need to make database calls. I'm trying to get better at writing clean code rather than just throwing together scripts with horrible style. What is ...
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
1answer
280 views

Python MySQLdb issues

I am trying to do the following insert operation: cursor.execute(""" insert into tree (id,parent_id,level,description,code,start,end) values ...
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
0answers
19 views

Error on import MySQLdb

i am using python 2.7.2 (windows 7) and i cant import MySQLdb, error: Traceback (most recent call last): File "<pyshell#1>", line 1, in <module> import MySQLdb File ...
1
vote
1answer
24 views

python script hangs at results = sparql.query().convert()

In python, I am firing Sparql queries to get data from dbpedia. At a point approximately firing 7,000 queries, my script is hangs at line results = sparql.query().convert() which is already ...
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
4answers
43 views

Does CREATE TABLE IF NOT EXISTS work in MySQLdb? Syntax?

I've created a table "table2" and get warnings (table already exists) when I run my code. I want to create the table only if it doesn't exist. Some research MySQL syntax websiteturns up the following ...
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
1answer
78 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
38 views

MySQLdb inserting a dict into a table

I have a row of data in dict format. Is there an easy way to insert it into a mysql table. I know that I can write a custom function to convert dict into a custom sql query, but I am looking for a ...
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 2 3 4