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!

有帮助吗?

解决方案

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.

其他提示

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top