سؤال

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