mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
commit
47d3f238c0
1 changed files with 2 additions and 2 deletions
|
@ -104,7 +104,7 @@ def db_exists(cursor, db):
|
||||||
return bool(res)
|
return bool(res)
|
||||||
|
|
||||||
def db_delete(cursor, db):
|
def db_delete(cursor, db):
|
||||||
query = "DROP DATABASE %s" % db
|
query = "DROP DATABASE `%s`" % db
|
||||||
cursor.execute(query)
|
cursor.execute(query)
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
@ -125,7 +125,7 @@ def db_create(cursor, db, encoding, collation):
|
||||||
encoding = " CHARACTER SET %s" % encoding
|
encoding = " CHARACTER SET %s" % encoding
|
||||||
if collation:
|
if collation:
|
||||||
collation = " COLLATE %s" % 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)
|
res = cursor.execute(query)
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue