Python_查看sqlite3表结构,查询语句的示例代码
作者:Martin_Yelvin 时间:2021-01-24 22:35:06
如下所示:
#!/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(表名)')
来源:https://blog.csdn.net/qq_36279445/article/details/81116574
标签:Python,sqlite3,表结构,查询
0
投稿
猜你喜欢
vscode配置leetcode插件并解决无法登录问题(图文详解)
2023-05-10 18:40:42
python爬虫selenium和phantomJs使用方法解析
2023-02-06 19:23:38
Win10+GPU版Pytorch1.1安装的安装步骤
2023-11-01 16:52:48
django多文件上传,form提交,多对多外键保存的实例
2023-04-13 04:24:12
python 实现有道翻译功能
2022-03-25 17:30:55
python OpenCV学习笔记直方图反向投影的实现
2021-01-12 09:16:44
python使用tcp传输图片数据
2023-08-09 06:33:48
大牌 Banner 设计欣赏(468x60)
2008-01-20 13:02:00
Python连接MySQL并使用fetchall()方法过滤特殊字符
2024-01-23 07:35:36
python解释模型库Shap实现机器学习模型输出可视化
2022-04-27 08:00:10
Mysql 主从数据库同步(centos篇)
2024-01-18 10:43:44
python3下载抖音视频的完整代码
2023-12-24 01:10:42
Python 如何实现变量交换
2021-07-03 12:48:20
SQL Server误区30日谈 第5天 AWE在64位SQL SERVER中必须开启
2024-01-17 15:25:36
Server.HTMLEncode让代码在页面里显示为源代码
2023-11-24 13:40:28
asp 删除数据并同时删除图片的代码
2011-02-28 10:39:00
详解php中curl返回false的解决办法
2023-10-01 05:53:22
Python-OpenCV教程之图像的位运算详解
2022-10-17 23:44:43
Python中os和shutil模块实用方法集锦
2021-04-19 08:45:12
django xadmin中form_layout添加字段显示方式
2023-08-06 23:59:12