by nmc » Thu Aug 06, 2009 6:51 pm
You're asking about doing this on android with abcd.db being a sqlite database?
Getting the tablenames:
select name from sqlite_master where type='table'
Getting the structure of a table:
select sql from sqlite_master where name='<NameOfTheTable>'