Postgres-StORM
Postgres-StORM copied to clipboard
PostgreSQL StORM Module
Does only work in combination with [https://github.com/SwiftORM/StORM/pull/9](https://github.com/SwiftORM/StORM/pull/9)
When we create a unique index on db, insert statement receives no rows on duplicates. This not an error and works as expected. But Postgres-StORM waits at least one row...
When we create unique index on db, insert method will not create new record for duplicates. This is not an error. So it will be nice to return optional Any...
The `logFile` parameter is set to `"./StORMlog.txt"`, several places. Looks like this: if StORMdebug { LogFile.info("Error msg: \(errorMsg)", logFile: "./StORMlog.txt") } if StORMdebug { LogFile.info("Postgres conn state: ok", logFile: "./StORMlog.txt")...
I wanted to use Postgres-StORM for my web project, and also use Perfect-Turnstile-PostgreSQL for authentication. But I don't want them to use the same Postgres servers. I used the SQLite...