有没有办法在SQLite中获取表的约束?

前端之家收集整理的这篇文章主要介绍了有没有办法在SQLite中获取表的约束?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
命令“pragma table_info(‘tablename’)”列出了列信息和“pragma foreign_key_list(‘tablename’)”外键.
如何显示表的其他约束(检查,唯一)?
只能解析表“sqlite_master”的字段“sql”?
我认为唯一的办法是按照你建议的方式来解析sqlite_master数据库sql列.

Python代码做到这一点:

import sqlite3

con = sqlite3.connect("example.sqlite3")
cur = con.cursor()
cur.execute("select sql from sqlite_master where type='table' and name='example_table'")
schema = cur.fetchone()
con.close()

entries = [ tmp.strip() for tmp in schema[0].splitlines() if tmp.find("constraint")>=0 or tmp.find("unique")>=0 ]
for i in entries: print(i)
原文链接:https://www.f2er.com/sqlite/197579.html

猜你在找的Sqlite相关文章