2010-08-26 74 views

回答

2
  • c.getColumnName(0)

访问游标属性0,1,2通过尽可能多的列你有

+0

感谢它的工作:) – 2010-08-27 12:18:10

+0

欢迎.............. :) – 2010-08-27 12:35:46

0

两种可能的方式我能想到的:

PRAGMA table_info(yourTable) 

SELECT * FROM yourTable LIMIT 0 

要获得所有表:

SELECT * FROM sqlite_master WHERE type = 'table' 
相关问题