a todo iOS application with Sqlite backend. This project include select, insert, edit and delete a todo. Search with title and description in the app dynamically.
This project also include basic DBManager sqlite class. This class is usable for any project. Class is flexiable and powerful.
1. copy your project DBManager.h and DBManager.m 2. import your class 3. define a DBManager property 4. initialize the property with database file name. 5. Get data from database with DBMAnager method => "loadDataFromDBWithQuery:" 5. Create query 6. Call "executeQuery:" method. If select query executed, get array from database, Otherwise get affectedRows count.It's just like that. Very simple to use your project.
=======