Doing it in Python

As you might expect, affecting the creation and deletion of databases and tables in Python is very similar to MySQL when using MySQL for Python. There are some differences as we shall see in this section.

For the following examples, we will work with the following code being assumed:

import MySQLdb
mydb = MySQLdb.connect('localhost', 'skipper', 'secret', 'csv')
cur = mydb.cursor()

Creating databases with MySQLdb

Where Cursor.execute() shows the number of affected rows in previous commands, whether INSERT or SELECT, it always returns a 0 value for the CREATE command of a database:

>>> cur.execute("""CREATE DATABASE foo""")
0L

Testing the output

Consequently, passing the output of the method to a variable will result in that variable ...

Get MySQL for Python now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.