Linkon Sid
Linkon Sid

Reputation: 531

sqlite database manager for iOS

I use this https://github.com/sanathp/DatabaseManager_For_Android sqlite manager for my android project which helps me a lot. It's a single class file that enabled me to see my database tables. So I didn't had to work blindly. I could see my database when I'm running the app on device with this manager. Is there any sqlite database manager library for iOS similar to this? I'm using swift for my project & for sqlite database I'm using Sqlite.swift project. Thanks.

Upvotes: 2

Views: 1137

Answers (2)

hrasity
hrasity

Reputation: 11

also you can use sqdatabase sqlite database manager ı made this application for check database you can insert update browse and delete or only check your datas easy to use

link corrected sory you can check from here

Upvotes: 1

ipraba
ipraba

Reputation: 16543

Though in android you have it as a activity i kind of have a separate mac app call SqliteBrowser by which i will manage the data

Check it here: http://sqlitebrowser.org/

I would locate the sqlite file in the documents directory(Or location where you store your sqlite file) and will load the sqlite file in this manager

  • To check the data is inserted correctly
  • To insert data and check whether i can retrieve via code
  • The tables inserted into the DB are correct

Upvotes: 1

Related Questions