Archive for the ‘MySQL’ Category

Simple MySQL Python Example

In order to use MySQL with python, you need to get the MySQLdb up and running. Once you have that installed, you use the DB-API to perform queries and such.
The DB-API PEP is good if you already know what you’re doing (you can also look at the sqlite module doc). Below is my [...]