Star
20
Fork
126
代码
介绍
代码
Issues
3692
Pull Requests
43
流水线
Actions
项目讨论
Wiki
项目成员
300
分析
项目设置
Star
20
Fork
126
master
docs
/
docs-lite
/
en
/
developer_guide
/
processing_the_result_set.md
下载
H
hemiao3787
修改目录结构
3bd8445b
创建于
1月27日
历史提交
Processing the Result Set
cursor.fetchone()
: Fetches the next row in a query result set and returns a sequence. If no data is available, null is returned.
cursor.fetchall()
: Fetches all remaining rows in a query result and returns a list. An empty list is returned when no rows are available.