1

与在空表中查找 SQLite 列名相同,但我有一个视图是附加数据库的一部分。因为附加了数据库,所以PRAGMA table_info( your_table_name );解决方案不起作用。此外,尝试解析查询字符串也是荒谬的,因为它是一个视图查询。

4

1 回答 1

3

PRAGMA AttachedDbName.table_info(your_table_name)

另一种技术:准备表格的陈述select * from your_table_name;,然后使用sqlite3_column_countsqlite3_column_name等。您不需要实际运行该语句,只需准备它。

于 2013-08-26T23:00:06.717 回答