Swift-Kuery-ORM
Swift-Kuery-ORM copied to clipboard
An ORM for Swift, built on Codable
This commit adds in options: * ORDER BY clause for sorting * OFFSET and LIMIT for retrieving a portion of the rows This builds the appropriate SQL queries for the...
## Context and Description As I mentioned in Issue #42, I get errors encoding and decoding Enums which are `RawRepresentable` & `Codable`. I have a tentative solution but at the...
Is it possible to use this ORM with Oracle Database ? If yes then can you please provide some examples on its implementation.
# Description If there are multiple databases at the same time, Any Query must specify database, Cannot use `Datebase.dafault` directly. ``` swift // if not using Datebase.dafault struct Amodel: Model...
- Parse UInt8/Int to Bool if expected type is Bool but got UInt8/Int - Convenience Query call using Database class
## What is chagend - This PR changed property name `Model.idKeypath` -> `Model.idKeyPath` ## reference issue #122
## Context and Description Trying to create a project where the Query filtering components and the Model components, that are outside of the scope of SwiftKuery/SwiftKueryORM/etc..., are in individual frameworks....
## Context and Description I can't create Table with String/Varchar type ID in MySQL database ### Environment Details MySQL on Ubuntu ### Steps to Reproduce Define struct with string type...
I'm wondering are there any other places for documentations or examples on queries? I'm having a really hard time trying to execute basic sql queries because the documentations are pretty...
Model might be made more flexible with overloads that took `Query` or by making some internal functions, such as `getSelectQueryWithFilters` and `convertError`, public.