Added mysqldb how mysql default
This commit is contained in:
parent
f55ba054c0
commit
935e4878ea
2 changed files with 107 additions and 1 deletions
106
paramecio/cromosoma/databases/mysqldb.py
Normal file
106
paramecio/cromosoma/databases/mysqldb.py
Normal file
|
|
@ -0,0 +1,106 @@
|
||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
import sys
|
||||||
|
import sqlalchemy.pool as pool
|
||||||
|
import MySQLdb
|
||||||
|
import MySQLdb.cursors
|
||||||
|
|
||||||
|
class SqlClass:
|
||||||
|
|
||||||
|
connection={}
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
|
||||||
|
self.error_connection=""
|
||||||
|
self.connected=False
|
||||||
|
self.connection_method=self.connect_to_db_sql
|
||||||
|
|
||||||
|
def dummy_connect(self, connection, name_connection="default"):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def connect_to_db(self, connection, name_connection="default"):
|
||||||
|
|
||||||
|
self.connection_method(connection, name_connection)
|
||||||
|
|
||||||
|
self.connection_method=self.dummy_connect
|
||||||
|
|
||||||
|
def connect_to_db_sql(self, connection, name_connection="default"):
|
||||||
|
|
||||||
|
try:
|
||||||
|
|
||||||
|
def getcoon():
|
||||||
|
c = MySQLdb.connect(connection['host'],
|
||||||
|
user=connection['user'],
|
||||||
|
passwd=connection['password'],
|
||||||
|
db=connection['db'],
|
||||||
|
charset='utf8mb4',
|
||||||
|
cursorclass=MySQLdb.cursors.DictCursor)
|
||||||
|
return c
|
||||||
|
|
||||||
|
mypool=pool.QueuePool(getcoon, max_overflow=30, pool_size=15)
|
||||||
|
|
||||||
|
self.connection[name_connection]=mypool.connect()
|
||||||
|
|
||||||
|
self.connected=True
|
||||||
|
|
||||||
|
except:
|
||||||
|
e = sys.exc_info()[0]
|
||||||
|
v = sys.exc_info()[1]
|
||||||
|
|
||||||
|
self.error_connection="Error in connection: %s %s" % (e, v)
|
||||||
|
|
||||||
|
#return False
|
||||||
|
raise NameError(self.error_connection)
|
||||||
|
|
||||||
|
#Make def query more simple if not debugging.
|
||||||
|
|
||||||
|
def query(self, sql_query, arguments=[], name_connection="default"):
|
||||||
|
|
||||||
|
#if fetch_type=="ASSOC":
|
||||||
|
#fetch_type=MySQLdb.cursors.DictCursor
|
||||||
|
|
||||||
|
#with self.connection[name_connection].cursor(MySQLdb.cursors.DictCursor) as cursor:
|
||||||
|
cursor=self.connection[name_connection].cursor(MySQLdb.cursors.DictCursor)
|
||||||
|
|
||||||
|
try:
|
||||||
|
|
||||||
|
cursor.execute(sql_query, arguments)
|
||||||
|
self.connection[name_connection].commit()
|
||||||
|
|
||||||
|
return cursor
|
||||||
|
|
||||||
|
except:
|
||||||
|
e = sys.exc_info()[0]
|
||||||
|
v = sys.exc_info()[1]
|
||||||
|
|
||||||
|
if hasattr(cursor, '_last_executed'):
|
||||||
|
sql_query=cursor._last_executed
|
||||||
|
|
||||||
|
self.error_connection="Error in query ||"+sql_query+"||: %s %s" % (e, v)
|
||||||
|
|
||||||
|
#return False
|
||||||
|
raise NameError(self.error_connection)
|
||||||
|
|
||||||
|
#Fetcho row return dictionary if is defined in query.
|
||||||
|
|
||||||
|
#def fetch(self, cursor):
|
||||||
|
|
||||||
|
#return cursor.fetchone()
|
||||||
|
"""
|
||||||
|
def __del__(self):
|
||||||
|
|
||||||
|
for key in self.connection:
|
||||||
|
|
||||||
|
self.close(self.connection)
|
||||||
|
"""
|
||||||
|
|
||||||
|
def close(self, name_connection="default"):
|
||||||
|
|
||||||
|
if self.connection[name_connection]:
|
||||||
|
|
||||||
|
self.connection[name_connection].close()
|
||||||
|
#self.connection[name_connection]=False
|
||||||
|
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -19,7 +19,7 @@ def admin(**args):
|
||||||
|
|
||||||
user_admin.create_forms(['username', 'password', 'email', 'privileges', 'lang'])
|
user_admin.create_forms(['username', 'password', 'email', 'privileges', 'lang'])
|
||||||
|
|
||||||
user_admin.forms['privileges'].arr_select={'0': I18n.lang('admin', 'without_privileges', 'Without privileges'), '1': I18n.lang('admin', 'selected_privileges', 'Selected privileges'), '2': I18n.lang('admin', 'administrator', 'Administrator')}
|
user_admin.forms['privileges'].arr_select={0: I18n.lang('admin', 'without_privileges', 'Without privileges'), 1: I18n.lang('admin', 'selected_privileges', 'Selected privileges'), 2: I18n.lang('admin', 'administrator', 'Administrator')}
|
||||||
|
|
||||||
user_admin.fields['password'].protected=False
|
user_admin.fields['password'].protected=False
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue