sqlite - 以编程方式确定主键
我需要以编程方式确定给定 sqlite 表的主键字段(使用 sqlite api,而不是命令行)。
我可以获得表列表和列列表,但只能使用 Column_Type() 函数查看列类型。需要知道给定列是否是主键(如果使用复合键,则为主键的一部分)。
I need to programatically determine what the primary key field(s) are for a given sqlite table (using sqlite api, not command line).
I can get a list of tables and a list of columns, but only see the column type using the Column_Type() function. Need to know if a given column is the primary key (or part of the primary key if a compound key is used).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 sqlite3_table_column_metadata:
Have a look at sqlite3_table_column_metadata: