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

如下所示:

#!/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表结构,查询语句的示例代码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

以上是 Python_查看sqlite3表结构,查询语句的示例代码 的全部内容, 来源链接: utcz.com/z/350808.html

回到顶部