gyladti
Results
1
comments of
gyladti
This code works with version 0.7.11 of pymysql: ``` import pymysql conn = pymysql.connect(host='127.0.0.1', user='root', password='password', db='mysql') cur = conn.cursor() cur.execute("USE scraping") cur.execute("SELECT * FROM pages WHERE id=1") print(cur.fetchone()) cur.close()...