Merge pull request #523 from midoks/dev

Update sql_mysql.py
pull/543/head
Mr Chen 1 year ago committed by GitHub
commit 0eb8791e84
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      plugins/data_query/sql_mysql.py

@ -202,6 +202,11 @@ class nosqlMySQLCtr():
sql = 'select * from ' + table + where_sql + ' limit '+str(start_index)+',10';
# print(sql)
result = my_instance.query(sql)
for i in range(len(result)):
for f in result[i]:
result[i][f] = str(result[i][f])
# print(result)
page_args = {}

Loading…
Cancel
Save