-1

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!

  • 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 Answers1

0
  1. Make a plist, and add your data, & read it. Link
  2. Use Realm : Link
Chatar Veer Suthar
  • 15,541
  • 26
  • 90
  • 154