Is there another way to connect to a MySQL database with what came included in the version of Python (2.5.1) that is bundled with Mac OS 10.5.x? I unfortunately cannot add the the MySQLdb module to the client machines I am working with...I need to work with the stock version of Python that shipped with Leopard.
|
feedback
|
|
Why not install a user (non-system) copy of MySQLdb? These are the files you'd need to install:
Even if you can't install into /usr/lib and /usr/share/pyshared, you could install it anywhere else, as long as it is in a directory listed in the client's PYTHONPATH. If installing a user copy of MySQLdb is for some reason not an option, then you could do the following, though be warned: it's a horrid way to interact with mysqld for reasons that I list below: Open up a terminal and type something like
If this works, then you could use python's For example,
As mentioned above, you lose a lot by doing this. Namely,
| |||||||
feedback
|
|
Or you could check out MySQL Connector/Python. It's still in development, but should work with Python 2.5. No MySQL libraries or other software needed. | |||
|
feedback
|
|
If the problem is the inability, as so many people have mentioned, that the msqldb module is a problem a simpler way is 1. install the mysql db 2. install the pyodbc module 3. Load and configure the odbc mysql driver 4. perform sql manipulations with pyodbc, which is very mature and full functional. hope this helps | |||
|
feedback
|
|
You can simplify parsing the data returned by a command line batch call on mysql by using os.popen() rather than subprocess.call(), and modifying the query in the command.
The output can now be put into a list of dictionaries keyed on the table fields names:
Caveats:
This just cleans up a hack. You are probably still better off finding a way to use MySQLdb, or something similar for another database. UPDATE:
The Python library reference offers some more possibilities. | ||||
|
feedback
|