【发布时间】:2020-04-14 10:13:09
【问题描述】:
import mysql.connector
mydb = mysql.connector.connect(host= 'localhost', user='root', passwd="barbie", db='data')
mycursor = mydb.cursor() #execute, fetch data act as a pointer
print("Connected to database")
query = ("select name , matric from users where username = %s")
username = 'shawn'
mycursor.execute(query, (username))
print ("Fetching single row")
record = mycursor.fetchone
print (record)
错误
为什么会出现这种错误?我只想显示该行。
我的数据库中的表
【问题讨论】: