Im developing an iOS App and I need basically two things: 1) write Data manually into a Database. 2) Just read Data and display it. (an offline Database would be also cool). What Database should I use? Thanks!
Asked
Active
Viewed 39 times
-1
-
What do you mean manually. Do you have data ready and you want it already in DB? – Chatar Veer Suthar Oct 21 '18 at 11:19
-
Yes I have the data ready. I want to introduce it "manually" in the DB so the App only reads it. I don't want to write something from the App in the DB, just read. – davidtorres Oct 21 '18 at 11:40
-
What does "data" mean exactly? 100 records? Thousands? A million? What about relationships, is everything one table? Everything from simple text files to a bundled SQLite database might be suitable. – Gereon Oct 21 '18 at 11:59
-
Yes, about 1000 records. Everything one table (1:N relationship) – davidtorres Oct 22 '18 at 12:35
1 Answers
0

Chatar Veer Suthar
- 15,541
- 26
- 90
- 154
-
Thanks! I will use Realm. I just found the way to add the data manually and not through the App. – davidtorres Oct 24 '18 at 11:23