sqlite 3 c++ retriving table info

Started by
0 comments, last by Kylotan 18 years, 11 months ago
Hi When my sqlite3helper class starts I want it to build table information it should contain column name and type. I’ve been reading the docs but can’t find how to do it. There is a table named sqlite_master that contains all tables but no useful info about each table. ANy one done this before?
Advertisement
sqlite3_column_decltype
sqlite3_column_name

I don't know if those are the most efficient ways of doing what you need to do, but they should at least make it possible.

This topic is closed to new replies.

Advertisement