0
votes
1answer
26 views
update in mysql select statement
Is there any way to run UPDATE or INSERT inside a SELECT statement in mysql?
0
votes
2answers
27 views
How to make python_select work for ‘$>python’ command?
I installed a couple of pythons in different versions with macports, and the apple python 2.6 is also working. Now I need to run a program which requires MySQLdb package support in …
1
vote
2answers
183 views
Python MySQL installing wrongly on Mac OS X 10.6 i386
When trying to install MySQL's python bindings, MySQLdb, I followed the instructions to build and install on my MacBook running Mac OS X 10.6 i386, and after entering the following …
3
votes
3answers
433 views
imploding a list for use in a python MySQLDB IN clause
I know how to map a list to a string:
foostring = ",".join( map(str, list_of_ids) )
And I know that I can use the following to get that string into an IN clause:
cursor.execute …
0
votes
1answer
72 views
With multiple Python installs, how does MacPorts know which one to install MySQLdb for?
I just upgraded the default Python 2.5 on Leopard to 2.6 via the installer on www.python.org. Upon doing so, the MySQLdb I had installed was no longer found. So I tried reinstallin …
1
vote
2answers
48 views
large mysql (innodb) database - slow query performance, disappearing tables and long time to restore backups
I've a database with 3 of the tables having rows in excess of 20 million each. I've used GUIDs as primary keys (unfortunately). Now our database is about 20GB and growing 5GB per m …
0
votes
1answer
60 views
ERROR 2003 (HY000): Can’t connect to MySQL server on ‘127.0.0.1’ (111)
I use the following command:
mysql -u root -h 127.0.0.1 -p
and the error message is :
ERROR 2003 (HY000): Can't connect to MySQL server on '127.0.0.1' (111)
Who can help me t …
1
vote
4answers
78 views
SQL returning extra data.
Hey there, was wondering if anyone could help a newbie on SQL and Python. I thought I had a pretty decent grasp of it, however something odd happened recently.
Here is the the fol …
7
votes
5answers
2k views
Problem compiling MySQLdb for Python 2.6 on Win32
I'm using Django and Python 2.6, and I want to grow my application using a MySQL backend. Problem is that there isn't a win32 package for MySQLdb on Python 2.6.
Now I'm no hacker …
0
votes
1answer
37 views
Python’s MySqlDB not getting updated row
I have a script that waits until some row in a db is updated:
con=MySQLdb.connect(server,user,pwd,db)
when the script starts the row's value is "running", and it waits for the valu …
1
vote
5answers
131 views
python MySQLDB query timeout
I'm trying to enforce a time limit on queries in python MySQLDB. I have a situation where I have no control over the queries, but need to ensure that they do not run over a set tim …
1
vote
4answers
560 views
Python: MySQLdb Connection Problems
I'm having trouble with the MySQLdb module.
db = MySQLdb.connect(
host = 'localhost',
user = 'root',
passwd = '',
db = 'testdb',
port = 3000)
(I'm using …
2
votes
3answers
191 views
Update to php5.3 breaks connecting to mysql db
I just updated php to 5.3 and can no longer connect to my remote mysql server. I get the following errors:
mysqli_connect(): OK packet 6 bytes shorter than expected
mysqli_connect …
1
vote
5answers
99 views
Why MySQLdb for Mac has to have MySQL installed to install?
Hi,
I been working on finding out how to install MySQLdb module for Python on Mac. And all pathes finally come cross to have MySQL installed since there is a mysql_config needed f …
0
votes
4answers
492 views
connecting Python 2.6.1 with MySQLdb
Hi All
I am using Python 2.6.1 and I want to connect to MySQLdb, I installed mySQL in my system, and I am trying to connect MySQL-python-1.2.2.win32-py2.6 from http://www.co …
