SQLite
Introduction
SQLite
is a simple Swift wrapper around SQLite. It is intended to act as an introduction to SQLite for Swift developers. You can read more about that here. Database allows developers to use pure SQL to access or modify their database without forcing them to deal with all the tiresome minutia involved in configuring SQLite databases and queries or converting from Swift types to the C types that SQLite expects.
Installation
Swift Package Manager
To use SQLite with the Swift Package Manager, add a dependency to your Package.swift file:
let package = Package(
dependencies: [
.package(url: "https://github.com/shareup/sqlite.git", .upToNextMajor(from: "18.0.0"))
]
)
License
The license for Database is the standard MIT licence. You can find it in the LICENSE
file.