summaryrefslogtreecommitdiff
path: root/code/utils/botsql.py
diff options
context:
space:
mode:
Diffstat (limited to 'code/utils/botsql.py')
-rw-r--r--code/utils/botsql.py33
1 files changed, 31 insertions, 2 deletions
diff --git a/code/utils/botsql.py b/code/utils/botsql.py
index 5df39c6..d39156e 100644
--- a/code/utils/botsql.py
+++ b/code/utils/botsql.py
@@ -41,11 +41,19 @@ class BotSQL(commands.Cog):
async def get_cursor(self):
try:
mydb.ping(reconnect=True, attempts=3, delay=5)
+ except NameError as er:
+ print(Fore.RED, er, "Reconnecting MySQL database" + Style.RESET_ALL)
+ if config.USEDEBUGCHAN == True:
+ bugchan = self.bot.get_channel(config.BUGCHANNEL_ID)
+ bugerror = discord.Embed(title=":sos: **ERROR** :sos:", description= "{} Reconnection MySQL database".format(er), color=0xFF001E)
+ bugerror.set_author(name=config.SERVER_NAME)
+ await bugchan.send(embed=bugerror)
+ await self.mydbconnect()
except mysql.connector.Error as err:
- await mydbconnect()
+ await self.mydbconnect()
print(Fore.RED + "Connection to MySQL database went away... Reconnecting " + Style.RESET_ALL)
if config.USEDEBUGCHAN == True:
- bugchan = bot.get_channel(dbchanID)
+ bugchan = self.bot.get_channel(config.BUGCHANNEL_ID)
bugerror = discord.Embed(title=":sos: **ERROR** :sos:", description="Connection to MySQL database went away... Reconnecting", color=0xFF001E)
bugerror.set_author(name=config.SERVER_NAME)
await bugchan.send(embed=bugerror)
@@ -54,5 +62,26 @@ class BotSQL(commands.Cog):
async def botmydb(self):
mydb.commit()
+ async def get_mydb(self):
+ try:
+ mydb.ping(reconnect=True, attempts=3, delay=5)
+ except NameError as er:
+ print(Fore.RED, er, "Reconnecting MySQL database" + Style.RESET_ALL)
+ if config.USEDEBUGCHAN == True:
+ bugchan = self.bot.get_channel(config.BUGCHANNEL_ID)
+ bugerror = discord.Embed(title=":sos: **ERROR** :sos:", description= "{} Reconnection MySQL database".format(er), color=0xFF001E)
+ bugerror.set_author(name=config.SERVER_NAME)
+ await bugchan.send(embed=bugerror)
+ await self.mydbconnect()
+ except mysql.connector.Error as err:
+ await self.mydbconnect()
+ print(Fore.RED + "Connection to MySQL database went away... Reconnecting " + Style.RESET_ALL)
+ if config.USEDEBUGCHAN == True:
+ bugchan = self.bot.get_channel(config.BUGCHANNEL_ID)
+ bugerror = discord.Embed(title=":sos: **ERROR** :sos:", description="Connection to MySQL database went away... Reconnecting", color=0xFF001E)
+ bugerror.set_author(name=config.SERVER_NAME)
+ await bugchan.send(embed=bugerror)
+ return mydb
+
def setup(bot):
bot.add_cog(BotSQL(bot))