代码拉取完成,页面将自动刷新
"""
查询操作
"""
import MySQLdb
# 1. 创建连接对象
from MySQLdb.cursors import DictCursor
from utils import connect
class Dept:
def __init__(self, no, name, location):
self.no = no
self.name = name
self.location = location
def __str__(self):
return f'{self.no}\t{self.name}\t{self.location}'
if __name__ == '__main__':
conn = connect(database='hrs')
try:
# 2. 获取游标对象
with conn.cursor(cursorclass=DictCursor) as cursor:
# 3. 通过游标对象向数据库发出SQL语句获取执行结果
cursor.execute('select dno as no, dname as name, dloc as location from tb_dept')
# 4. 通过游标抓取数据
# - fetchone / - fetchmany / - fetchall
for row in cursor.fetchall():
dept = Dept(**row)
print(dept)
except MySQLdb.MySQLError as err:
print(err)
finally:
# 5. 关闭数据库连接(释放资源)
conn.close()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。