PersistenceHelper is a Swift-based framework designed to simplify interactions with SQLite databases. It provides an easy-to-use API for performing common database operations such as creating tables, inserting, updating, fetching, and deleting records.
- Simple and intuitive API for database operations
- Supports CRUD (Create, Read, Update, Delete) operations via SQL Raw Querys
- Lightweight and efficient, with minimal overhead
- iOS 15.0 or later
- Swift 5.0 or later
- Xcode 13.0 or later
To integrate PersistenceHelper into your Xcode project using CocoaPods, specify it in your Podfile:
pod 'PersistanceHelper'
Run pod install
to integrate the library.
Refer the example Project File For How to using the library.