SQLite and Swift

SQLite and Swift

by 

| July 26, 2022 | in

When building an application, you often need some way to store associated data. Applications usually store less data than cloud applications, but many of the same constraints still exist. You still need to store data.

Some of the data is relational, such as contacts or addresses. And having the ability to store relational data in an application running on a phone or Mac application makes a lot of sense.

There are a few options when we need to store relational data, but the easiest is SQLite. SQLite is well supported on Mac and iOS as a data store. In this post, we will create a contact record in an SQLite database.

First, we will create an App using Xcode.

Selecting "App" in Xcode

Choosing options for your new project in Xcode

We will need a package to support SQLite.

Adding the SQLite package

Adding the SQLite package

Now we can create a Swift file for storing data in SQLite.

Creating a Swift file

We can create our new tables pretty easily.

We can write data to our contacts table with straightforward SQLite code.

Here’s the complete data access code.


Related posts