Commit 92d98d24 by Alex Quach

Escape MySQL db names.

parent c9277ef4
......@@ -104,7 +104,7 @@ def db_exists(cursor, db):
return bool(res)
def db_delete(cursor, db):
query = "DROP DATABASE %s" % db
query = "DROP DATABASE `%s`" % db
cursor.execute(query)
return True
......@@ -125,7 +125,7 @@ def db_create(cursor, db, encoding, collation):
encoding = " CHARACTER SET %s" % encoding
if collation:
collation = " COLLATE %s" % collation
query = "CREATE DATABASE %s%s%s" % (db, encoding, collation)
query = "CREATE DATABASE `%s`%s%s" % (db, encoding, collation)
res = cursor.execute(query)
return True
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment