


HomeScreenViewController.swift (UIViewController) weak var tbStudentData: func btnDeleteClicked(sender: AnyObject) func btnEditClicked(sender: AnyObject) Ĭ. Now, create property and action as per following.Ī. If you would like to learn more about SQLite, please refer the following link: SQL is basic language used by most of the RDBMS. Data available from SQLite database can be accessed using Structured Query Language, which is known as SQL (pronounced as Sequel).(But here, in this post I am going through easier approach I am using already available SQLite wrapper interface between SQLite database and my swift application). So if we want to use SQLite in our application we might have to work with complicated C functions, data types and pointers. SQLite is written in C programming language.You have to handle all the operations within the app through various functions provided by SQLite library. There is no stand-alone server running in the background. SQLite is also known as Embedded because it is available as library that is linked with our application.SQLite is Relational Database Management System (RDBMS).The main objective of Swift Sqlite Tutorial is to help you understand how to Insert, Update, Delete Records in SQLite Database in Swift.īefore I start coding the app, I would like to give you some knowledge about database we are going to use – SQLite
