Python_查看sqlite3表结构,查询语句的代码实例

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

Python_查看sqlite3表结构,查询语句的代码实例

  2021-04-03 我要评论

如下所示:

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
 
import sqlite3
 
conn = sqlite3.connect('test.db')
# 创建一个Cursor:
cursor = conn.cursor()
 
# 查询记录:
conn = sqlite3.connect('calendar.db')
cursor = conn.cursor()
# 执行查询语句:
cursor.execute('select * from perpetualCalendar')
# 获得查询结果集:
values = cursor.fetchall()
print(values)
 
# cursor.execute('PRAGMA table_info(perpetualCalendar)')
print (cursor.fetchall())
cursor.close()
conn.close()

查看表结构:cursor.execute('PRAGMA table_info(表名)')

以上这篇Python_查看sqlite3表结构,查询语句的示例代码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

您可能感兴趣的文章:

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们