-
Windows Vista Home Basic Ru + sp2
Python 2.6.4 (r264:75708, Oct 26 2009, 08:23:19) [MSC v.1500 32 bit (Intel)] on win32
MySQLdb svn rev 633 (self build from mingw32 gcc 4.4.0)
Sample code to reproduce:
# -*- coding: utf-8
from MySQLdb import connect
conn = connect(...)
curs = conn.cursor()
curs.execute('drop table if exists notExistTable')
Console session...
2009-11-12 07:07:59 UTC by shura_zam
-
Also consider changing ImutableSet to frozenset to get rid of the deprecation warning.
2009-11-08 21:33:53 UTC by MizardX
-
very good.
2009-11-08 17:17:45 UTC by jwkljh
-
libmysqlclient_r.so is not on your default library load path. You don't say what OS you are using (but obviously something POSIX), so you'll have to do your own research on how to correct this.
You can also build MySQLdb with a statically-linked library. The [README][1] describes how to do this.
[1]...
2009-11-05 18:03:11 UTC by adustman
-
1.2.2 or 1.2.3c1 should work fine.
2009-11-05 17:53:59 UTC by adustman
-
Hello,
I installed a MySQL 5.1 to a custom location.
Then I installed mysqldb.
The installation is fine. But when I tried to use it with my web app, it keep complained me of this:
ImproperlyConfigured: Error loading MySQLdb module: libmysqlclient_r.so.16: cannot open shared obj
ect file: No such file or directory
What is my problem? Any suggestion?.
2009-11-05 09:39:35 UTC by yookoala
-
Hi:
I need a version of the software for Python 2.4 for Red Hat 5.2.
Which version of the software should I use?
Thanks
Matthew Harelick.
2009-11-04 16:22:18 UTC by msharelick
-
adustman changed the public information on the MySQL for Python project.
2009-11-03 22:03:23 UTC by adustman
-
adustman changed the public information on the MySQL for Python project.
2009-11-03 22:01:09 UTC by adustman
-
Ok - I think %.17g works too in this case.
2009-11-03 21:46:29 UTC by robitaille