Change GUI view and usability
This commit is contained in:
3
dm.py
3
dm.py
@@ -9,7 +9,6 @@ host='kis',
|
||||
charset='utf8')
|
||||
c = conn.cursor()
|
||||
|
||||
|
||||
def createTables(tbl_list):
|
||||
global tbl_descr_list, tbl_struct_list
|
||||
i = 0
|
||||
@@ -59,6 +58,7 @@ def createTables(tbl_list):
|
||||
i = i + 1
|
||||
tbl_descr_list.append(one_Table_descr)
|
||||
tbl_struct_list.append(one_Table_struct)
|
||||
print(qwery_create)
|
||||
c.execute(qwery_create)
|
||||
return tbl_names_list
|
||||
|
||||
@@ -98,6 +98,7 @@ def selectData(tbl):
|
||||
subqwery = "(SELECT CONCAT(" + field_replace + ") FROM " + subqwery +" WHERE "+ table1 + "." + field1 +"="+ tbl +"."+ field +") AS " + field
|
||||
qwery = qwery.replace(field, subqwery)
|
||||
qwery = qwery.rstrip(',') + " FROM " + tbl + " LIMIT 10000"
|
||||
print(qwery)
|
||||
c.execute(qwery)
|
||||
|
||||
return c.fetchall()
|
||||
|
Reference in New Issue
Block a user