Escape "_" in database name for "SHOW DATABASES" statement
This commit is contained in:
parent
eeabda4831
commit
b42ff30505
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ else:
|
||||||
#
|
#
|
||||||
|
|
||||||
def db_exists(cursor, db):
|
def db_exists(cursor, db):
|
||||||
res = cursor.execute("SHOW DATABASES LIKE %s", (db,))
|
res = cursor.execute("SHOW DATABASES LIKE %s", (db.replace("_","\_"),))
|
||||||
return bool(res)
|
return bool(res)
|
||||||
|
|
||||||
def db_delete(cursor, db):
|
def db_delete(cursor, db):
|
||||||
|
|
Loading…
Reference in a new issue