What I want to do is let the user save lists of data in sqlite tables. When the user loads a tableview, I want there to be a cell corresponding to each of the sqlite tables that currently exist. How can I accomplish this?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
SQLite includes a magic table called sqlite_master which lists all the tables and indexes in the database. You can query this for entries matching the correct type that don’t start with SQLite’s bookkeeping prefix.
Use this SQLite query:
Or, if you want the names of each table: