HubobelsPython/SQL.py
2019-02-12 20:19:52 +01:00

17 lines
No EOL
425 B
Python

import pymysql
connection = pymysql.connect(db="hubobel",
user="hubobel",
passwd="polier2003",
host='10.0.1.59',charset='utf8')
cursor = connection.cursor()
try:
cursor.execute("""CREATE TABLE facts (
nr INTEGER, fact TEXT)""")
except:
print ('weiter')
sql = "SELECT * FROM facts ORDER BY nr DESC"
resp = cursor.execute(sql)
print(resp)