Category: Objc App Development

Using SQLite: Create a Table in The Database

Once you’ve created a SQLite database file in the Documents folder of the application sandbox, the next logical step is to open the database file and create a table in it. As you already know, a database table is for storing the application’s data. A table’s schema (pronounce skee-ma) consist of columns and rows. Each column contains a different […]

Using SQLite: Introduction

If you are a new visitor to our site, please read the Getting Started guide and the tableView Workshop series. The main goal of this tutorial series is to show how to use the SQLite engine in an iOS application to execute these fundamental SQL commands: CREATE TABLE – This command is for creating a table in a […]