You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from manage_sql.manage_sql import HandleSql
|
|
|
|
MYSQL_CONN = HandleSql()
|
|
|
|
try:
|
|
check_return_bdd = MYSQL_CONN.conn()
|
|
except OperationalError as error:
|
|
print(error)
|
|
else:
|
|
print(check_return_bdd)
|