fluent-postgres-driver icon indicating copy to clipboard operation
fluent-postgres-driver copied to clipboard

🐘 PostgreSQL driver for Fluent.

Results 9 fluent-postgres-driver issues
Sort by recently updated
recently updated
newest added

Improves DatabaseConfigurationFactory: - The `encoder` and `decoder` parameters are forwarded in the function `postgres(url:, maxConnectionsPerEventLoop:, connectionPoolTimeout:, encoder:, decoder:)` - The `encoder` and `decoder` parameters are forwarded in the function `postgres(hostname:,...

semver-patch

As title states :-) to build support for this community we need this

Does Vapor planning to support JONB (not JSONB[ ]) column type for arrays? * Vapor Framework version: 4.32

What I'm trying to do is to get sorted and paginated categories: ```swift Category.query(on: req.db) .sort([Category.FieldKeys.nameEN, Category.FieldKeys.namePL]) .paginate(PageRequest(page: options.page, per: options.itemsPerPage)) ``` The logs I get from my database: ```...

The exact issue is [described here](https://github.com/vapor/fluent-kit/issues/379). The `sum` function of Postgres can return several data types, which is not taken into account when executing the aggregate function. The exact issue...

I was testing some code on my local machine using a project that is actually deployed to production and works fine there when I noticed that querying one of my...

Hello everyone! I do not understand how to put bindings properly in SQL query. Always I just get 500 error. I add them as 'PostgresData', then put after query SQL....

Currently it isn't possible to declare a constraint, while making it DEFERRABLE or set a initial deferred state. Workaround 1: ```swift guard let db = database as? PostgresDatabase else {...

enhancement

```swift let oldRW = vaporApp.db(.psql) var ro = vaporApp.db(.readOnly) let databaseLogger = Logger(label: "Database") { label in var logger = EventManager(service: "Database", eventId: UUID(), level: Logger.Level.info) print(label) logger.label = label...