How can execute sql script stored in *.sql file using MySQLdb python driver. I was trying


cursor.execute(file(PATH_TO_FILE).read())

but this doesn't work because cursor.execute can run only one sql command at once. My sql script contains several sql statements instead. Also I was trying


cursor.execute('source %s'%PATH_TO_FILE)

but also with no success.

link|improve this question

76% accept rate
feedback

2 Answers

up vote 4 down vote accepted
for line in open(PATH_TO_FILE):
    cursor.execute(line)

This assumes you have one SQL statement per line in your file. Otherwise you'll need to write some rules to join lines together.

link|improve this answer
feedback

From python, I start a mysql process to execute the file for me:

from subprocess import Popen, PIPE
process = Popen('mysql %s -u%s -p%s' % (db, user, passwd),
                stdout=PIPE, stdin=PIPE, shell=True)
output = process.communicate('source ' + filename)[0]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.