sqlite - Question regarding ideal database implementation for iPhone app -


So I have a question about the ideal setup for an app that I'm getting ready to build. The app is basically going to be a memorization tool and I already have an SQL database that I'm using for the app.

The user will navigate through the contents of the database (using UIPicview), and select something to remember. If the cell of that row or data is selected, then it is put in a pool or a worthy view that indicates that your "need to remember the pool" when you go to that tableview, You can select, and the actual data will be populated.

This is the thread.

I know that there are, with the database interface, all the information in the table view will be deletable, in the event that they should not do it anymore ...

There are some Different options, in this particular setup, is Core Data the easiest way? Is there any other way that would be better? I'm just looking for a point in the right direction, any help is appreciated !!

Core data is going to be the easiest. You want to migrate your data into a SQLite file generated from a raw data from your raw SQLite file because the core data is designed to manage your file 100%. Fortunately you can do this with a quick command line app on the desktop and then copy the resulting SQLite file into the resultant core data in your application bundle for later use on iOS.

It is possible to make raw SQLite on iOS, but due to the ease of use of a real core data, headache to be correct.

Update

The core iOS data Evens file core data on the desktop so you can say for example that you can develop a quick and easy app to the desktop as the following inputs are:

  • table / unit name
  • CSV one line of data

and then, depending on the unit name The core will create the data unit and insert the data in that row.

With that place it would be trivial to do a Bash script

Hmmm may have to post the blog for some time :)

div>

Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -