Question

I am using xamarin studio with xcode to create a ipad application I have created database and table using sqlite. Questions is, how do I view all the data I have input in the table and database.

Thanks for any answer!

Était-ce utile?

La solution

SQLite Browser will help you to add/update/delete and query data in tables, and also view data.

Ideally you should save the database file in

Path.Combine (Environment.GetFolderPath(Environment.SpecialFolder.Personal), "DBName.db");

This will be at following path > /users/[name]/Library/Application Support/iPhone Simulator/[version]/Applications/SomeNumberedApp/Documents/DBName.db

where SomeNumberedApp is a folder which will contain:

  1. Documents folder
  2. Application file for your app (named after your app)
  3. Library folder
  4. tmp folder

You would find your database in Documents folder.

Autres conseils

SQLite Manager is a Firefox plugin that allows you to manage SQLite databases.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top