What's the proper way to use sqlite at xCode?
- by Elliot Chen
Hi, Experts:
Can you please give some suggestions on sqlite using at xcode?
Within my application, I use a sqlite DB to store all local data. Two methods can be used to retrieve those data during running time.
1, Load all the data into memory at initialization stage. (More memory used, less DB open/close operation needed)
2, Read corresponding…