标签: android sqlite
任何人都可以告诉我如何获取Android中数据库表中使用的所有列名?
答案 0 :(得分:2)
访问游标属性0,1,2传递尽可能多的列
答案 1 :(得分:0)
我能想到的两种可能方式:
PRAGMA table_info(yourTable)
或
SELECT * FROM yourTable LIMIT 0
获取所有表格:
SELECT * FROM sqlite_master WHERE type = 'table'