Posts tagged as: database

Simple Sqlite Database Interaction Using FMDB

November 4th, 2011 Posted by: - posted under:Tutorials - 16 Comments

Introduction
In the age where Core Data is king, the database that started it all is often overlooked. I’m talking of course about sqlite. As you may or may not know, prior to core data, sqlite was the preferred method of storing relational data on iOS devices.
Although, most developers don’t interact with sqlite directly, they still use it under the hood as the primary data store for core data. This is great and all, but there are often times when raw …

READ MORE

iPhone Programming Tutorial – Creating a ToDo List Using SQLite Part 4

September 22nd, 2008 Posted by: - posted under:Tutorials - 115 Comments

This is the final installment of our 4 part series of creating a Todo list for the iPhone. In this tutorial, I will detail how to add and delete new todo objects from the SQLite database. Make sure that you have completed the following tutorials before you begin this one:

iPhone Programming Tutorial – Creating a ToDo List Using SQLite Part 1

READ MORE