Using Python to interact with MySQL

I have to use MySQL database frequently. Interacting with MySQL is easy and simple. There is a nice module named MySQLdb is available for this purpose.

I am not writing details about using it as there is a good tutorial "Writing MySQL Scripts with Python DB-API" available online. I myself read this when I used MySQL with Python for the first time.

MySQL Cookbook also covers database programming in Python and other languages as well.

Comments

Popular posts from this blog

lambda magic to find prime numbers

Convert text to ASCII and ASCII to text - Python code

Adjacency Matrix (Graph) in Python