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

learn more… | top users | synonyms (1)

0
votes
0answers
8 views

How to get MySQLdb running on Mountain Lion with Python 2.7 and MySQL 5.6.11 x86_64

I have gone through various possibities of installing MySQL following hundreds of advice (e.g. here on stackoverflow) in order to get MySQLdb running. After having installed Xcode and Command Line ...
1
vote
2answers
53 views

How can one optimize this MySQL count algorithm?

I have 2 tables; one is users and the other records user actions. I want to count the number of actions per user and record this in the users table. There are ~100k user and the following code takes 6 ...
0
votes
0answers
9 views

Getting peewee to work on elastic beanstalk

I'm trying to install the peewee package on an elastic beanstalk instance to control a bottle application. I think the problem is with the MySQL-python dependency, but peewee doesn't load either. My ...
0
votes
1answer
33 views

Python 2.6 : How to pass variable to mysql query if it must be placed above application(environ?

The only way to get a variable from the URL is via under the def application(environ, start_response): but the mysql code must be placed on top of this line. what are the known options ? extra ...
0
votes
0answers
14 views

Python MySQLdb returns a list of empty strings on a large query

The MySQL query I'm running returns 2,903,781 items in its result set. When I do the query using MySQLdb in Python, and attempt to get back a list with fetchall(), I get a list that is the correct ...
0
votes
1answer
28 views

using the GetIndex() function

Managed to fix up my code. now thing is I'm trying to call up an event to use the getIndex() to extract the index of the currently selected listctrl item. I know I need to pass a varable for event but ...
1
vote
1answer
46 views

Why does this table name require back-ticks?

I am seeing a curious name dependency in the following MySQL table definition. When I code the table as shown, it seems to break MySQL. When I perform "select * from dictionary_pair_join" from ...
0
votes
1answer
29 views

MySQLdb delete query - TypeError: not all arguments converted during string formatting

I'm trying to run a delete query using MySQLdb and passing 3 variables. The query is run as follows: self.cursor.execute("""DELETE er.* FROM extension_recording er, extension e, client c WHERE ...
0
votes
0answers
37 views

Error installing MySQL-Python on Mac

I tried to install the MySQL-Python library for development with Django, but always show any errors in the different ways: With PIP: rigo:~ rigobcastro$ sudo pip install MySQL-Python ...
0
votes
0answers
10 views

Python Mysql plugin Installation - ImportError: dlopen [duplicate]

I Am having a problem when install MySQL for python. Using this tutorial How to install MySQLdb (Python data access library to MySQL) on Mac OS X? I am running OS 10.6.8 I get this error when I run ...
0
votes
1answer
40 views

variable not being defined in a class despite being defined in it's init function

from wx import * import Customer as c class CustomerMain ( wx.Frame ): def __init__( self, parent ): wx.Frame.__init__ ( self, parent, id = wx.ID_ANY, title = u"Customers", pos = ...
0
votes
0answers
29 views

Cannot create cursor with MySQLdb

I am connecting to a database with the following code: #generate connection to database def connection(): return MySQLdb.connect(host = __HOST__, user = __USER__, ...
0
votes
1answer
27 views

Running remote mysqldump over SSH all in python

Hi Im trying to write a Python script to SSH into a remote server and execute a mysqldump. My method so far was to establish portforwarding then run a backup script I already had written. I suspect ...
-2
votes
1answer
19 views

MySQL triggers use issue

I'm very new to MySQL triggers, i have a table called result which includes student results. so When producing the results of each student it should include the Practical Marks (one practical – 10%), ...
1
vote
1answer
35 views

Django mysql table name did not validate

I added classes to Django app model to create mysql tables. I have 'downloads' table, and 'downloads' column in 'songs' table. When i want to sync db, Django returns me error: CommandError: One or ...
0
votes
1answer
21 views

Python [ mod_wsgi ] how to gather up all of the mysql results into an array?

via cli: [root@localhost 0]# python test13.wsgi (1, 'aaaaaa') (2, 'sdsdfsdfsd') (3, 'dsfsdfasdfsdf') (4, 'sdgsdgsdfsa') [root@localhost 0]# via apache : (4, 'sdgsdgsdfsa') script code: import ...
-1
votes
1answer
19 views

Python [ mod_wsgi ] works via cli but not via apache

cli: [root@localhost 0]# python test13.wsgi (1, 'aaaaaa') [root@localhost 0]# apache: Internal Server Error full script code: import MySQLdb conn = MySQLdb.connect (host = "localhost", ...
-1
votes
1answer
39 views

Python script ( mod_wsgi ) refuses to execute via apache, here is the error_log. [closed]

this is the code i run via apache. def application(environ, start_response): start_response('200 OK', [('content-type', 'text/html')]) return ['Hello world!'] import MySQLdb as mysql db = ...
-2
votes
0answers
24 views

Python : How can i combine mysql connect code with headers code? [closed]

Here is a brand new hello world example i found via google def application(environment, start_response): status = '200 OK' response_headers = [('Content-type', 'text/html')] ...
0
votes
1answer
25 views

Python MySql executemany error

I am getting an error on "cusrosr.executemany(). The first statements (with recs1) that inserts into a single column executes fine, and insets two records. The second insert (recs2) has an error: ...
0
votes
1answer
66 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" ...
2
votes
2answers
47 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 ...
1
vote
1answer
46 views

Installing MySQL-python for Django

I've just learned how to use virtualenv and I installed Django 1.4.5. I'm assuming that the virtualenv created a clean slate for me to work on so with the Django 1.4.5 installed, I copied all my ...
0
votes
2answers
40 views

UnicodeEncodeError:'latin-1' codec can't encode characters in position 0-1: ordinal not in range(256)

i am a newer in python.Today when I write some search function I met an error.well, I use sqlalchemy orm to do that, in my function,I input a chinese word as the key word.The html page give me an ...
1
vote
1answer
44 views

Can't append a list of dicts with dict from another list of dicts

Been Googling hours again for answer but seems like my situation is unique, or my understanding of Py is...uh, unique. I have a list of dictionaries (let's call it sqlListOfDict) built from ...
0
votes
1answer
19 views

Python MySQLdb query with variable and “time_format(time, '%H:%i')”

Been struggling for hours and having searched the Internet to no avail. I tried every suggestion from stackoverflow (use '%%', change the ',' before '(val)' to '%', bracket the '%s' with "'" etc) but ...
0
votes
0answers
22 views

Update rank in MySQL with WHERE clause

I'm trying to rank a MySQL table where ties share the same rank, I found the below code from question 2727138, does this, however I need a WHERE clause on playerID I've added it in a few places but ...
0
votes
0answers
33 views

MySQLdb undefined - import MySQLdb

So I have this application called Openfreezer. I have followed the instructions perfectly to make their web application work... and it does. But now when I play around with it and it starts calling ...
1
vote
4answers
121 views

MySQL select and update in one query

I'm trying to select a value from MySQL (total_points) then add to a local variable (new_points) and update total_points in the SAME query, does anyone know if this is possible... I currently have., ...
0
votes
1answer
61 views

Mysql-python can't connect to localhost server on Windows 7

i have a local mysql server running on localhost, Windows 7 C:\web>mysqld --console [...] 130428 19:12:37 [Note] mysqld: ready for connections. Version: '5.5.31-log' socket: '' port: 3306 MySQL ...
0
votes
1answer
29 views

Error “TypeError: not all arguments converted during string formatting” MySQLdb

I am trying to update a MySQL table through Python 2.7. I have read and tried many solutions and keep getting an error message: TypeError: not all arguments converted during string formatting import ...
0
votes
1answer
123 views

Python: Escape Single Quote from MySQL Query

I have a query string that runs in side a loop and for every item in the list query gets executed. The list contains strings and I use python string format technique to replace the query with the ...
1
vote
1answer
42 views

insert a Python list into a column in MySQL

I have list and I want to enter each element of that list into associated indexed cells of a column in MYSQL using Python. E.g lst = [11,22,33,44,55,66] MYSql column: Data 11 22 33 44 55 66. ...
0
votes
1answer
35 views

How do I remove a python egg?

This post (How to install MySQLdb (Python data access library to MySQL) on Mac OS X?) recommends cleaning up a MySQLdb installation by removing a python egg: "Step 3c: Remove the egg under ...
2
votes
1answer
47 views

Django - Can we make a connection to different remote database

I am writing a Django application where I already have 1 mysql backend db configured in my settings.py. I know we can add as many db configurations as we want, but that's hard coding which I don't ...
0
votes
1answer
47 views

Python: MySQL connection is open, but can't create cursor

I'm trying to open a cursor to a MySQL-DB. But I'm getting this error: 'NoneType' object has no attribute 'cursor' Here is a small sourcecode: class Sample: def __init__(self): self.conn = ...
0
votes
1answer
34 views

ON DUPLICATE KEY UPDATE with a WHERE and COUNT condition…?

I would have liked to use a WHERE statement on a ON DUPLICATE KEY UPDATE statement in MySQL, however I understand you can't do this. I wanted my statement to be something like this.. INSERT INTO ...
1
vote
1answer
45 views

Trouble building mysql-python on dotcloud: needs distribute >= 0.6.28

I'm suddenly having trouble building my Python/Django app on dotcloud. It seems that MySQL-python needs distribute >= 0.6.28. My requirements.txt specifies distribute==0.6.36, but this is being ...
0
votes
2answers
34 views

SQL query to show results + or - 30mins than what is stored in table Python

I'm new to Python and using MySqldb and in need of a bit of help. I have the below code in a python script to search a table in my database to find any ids of meetings that have today's date. ...
1
vote
1answer
44 views

How to print standard/native MySQL output on the screen?

As per the title say: Is there a way to print standard/native MySQL output on the screen? I'm talking about, e.g. something like this: san@pcjq:~$ mysql -uroot -p mysql -t -e "SELECT Host,User FROM ...
0
votes
1answer
27 views

Test connection to MySQL server

Whats the best / correct way to test a connection to a MySQL server.. can you for example ping it..? I'm using MySQLdb and python. I want my program to be structured in the following way ...
2
votes
2answers
53 views

unable to access mysql database from python

I tried to access data from mysql database through python then I tried as import MySQLdb db = MySQLdb.connect(host = "127.0.0.1", port = 3306, ...
4
votes
1answer
472 views

cc1: error: unrecognized command line option “-Wno-null-conversion” within installing python-mysql on mac 10.7.5

This error broke my python-mysql installation on Mac 10.7.5. Here are the steps The installed python is 2.7.1, mysql is 64 bit for 5.6.11. The being installed python-mysql is 1.2.4, also tried ...
0
votes
1answer
44 views

Generate SQL Insert statements for SQLite with Django

I want to generate a complete SQL file with Django that can be downloaded and executed to create a SQLite DB. The problem is escaping the strings to insert them into the file to download. This is ...
0
votes
0answers
30 views

weakly-referenced object no longer exists error on creating a function

I am working with MySQL connector and Python 3.3. I am creating a script that consists of functions that frequently access database server. So for all the functions I have created, I am trying to ...
-4
votes
1answer
64 views

Cannot connect to WAMP server using Python script [closed]

I am tryin to connect to a mySQLdb using python and whenever i am trying to connect to it, it doesnt work. It works if i am tryin to connect to it using host as 'localhost' and port = 3306, username = ...
0
votes
1answer
339 views

ImportError: No module named MySQLdb - Debian 6.0

I got a problem in Python while try to import mysql. The beginning of my code is (I'm using monkeyrunner to run script) : #!/usr/bin/env python import sys import MySQLdb . . . etc Each time I ...
0
votes
2answers
75 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
26 views

What do I use for HOST to connect to a remote server with mysqldb python?

Things to note in advance: I am using wampserver 2.2 Ive forwarded port 80 I added a rule to my firewall to accept traffic through port 3306 I have added "Allow from all" in directory of "A file i ...
0
votes
0answers
22 views

ImportError: No localization support for language 'eng' in python

i am getting ImportError: No localization support for language 'eng' when using MySQL Connector Python. My Traceback is as below. Traceback (most recent call last): File \"DB_Module.py\", line 151, ...

1 2 3 4 5 13