命令“pragma table_info(‘tablename’)”列出了列信息和“pragma foreign_key_list(‘tablename’)”外键.
如何显示表的其他约束(检查,唯一)?
只能解析表“sqlite_master”的字段“sql”?
如何显示表的其他约束(检查,唯一)?
只能解析表“sqlite_master”的字段“sql”?
我认为唯一的办法是按照你建议的方式来解析sqlite_master数据库的sql列.
原文链接:https://www.f2er.com/sqlite/197579.htmlimport 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)