Avatar
PureSQL is a SQLite compiler for Swift. Enabling developers to finally just write plain SQL in a type safe compiled manner. For Example the following SQL: -- Located in Migrations/1.sql CREATE TABLE todo (id INTEGER, name TEXT, isComplete INTEGER AS Bool); -- Located in Queries/Todo.sql selectTodos: SELECT * FROM todo; Generates: let todo...