Python_查看sqlite3表结构,查询语句的代码实例
人气:0如下所示:
#!/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表结构,查询语句的示例代码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
您可能感兴趣的文章:
- 基于sqlalchemy对mysql实现增删改查操作
- 基于SQLAlchemy实现操作MySQL并执行原生sql语句
- python数据库操作mysql:pymysql、sqlalchemy常见用法详解
- python orm 框架中sqlalchemy用法实例详解
- python使用SQLAlchemy操作MySQL
- Python SQLAlchemy入门教程(基本用法)
- python SQLAlchemy的Mapping与Declarative详解
- python SQLAlchemy 中的Engine详解
- Python流行ORM框架sqlalchemy安装与使用教程
- python 获取sqlite3数据库的表名和表字段名的实例
- python使用sqlite3时游标使用方法
- Python SQLite3简介
- Python使用flask框架操作sqlite3的两种方式
- python与sqlite3实现解密chrome cookie实例代码
- Python SQLite3数据库日期与时间常见函数用法分析
- Python实现读取TXT文件数据并存进内置数据库SQLite3的方法
- Python开发SQLite3数据库相关操作详解【连接,查询,插入,更新,删除,关闭等】
- Python sqlite3事务处理方法实例分析
- Python简单操作sqlite3的方法示例
- Python3+SQLAlchemy+Sqlite3实现ORM教程
加载全部内容