Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vapor/fluent-postgres-driver
🐘 PostgreSQL driver for Fluent.
https://github.com/vapor/fluent-postgres-driver
fluent fluent-database fluent-driver postgresql server-side-swift swift swift-linux vapor vapor-service
Last synced: 3 months ago
JSON representation
🐘 PostgreSQL driver for Fluent.
- Host: GitHub
- URL: https://github.com/vapor/fluent-postgres-driver
- Owner: vapor
- License: mit
- Created: 2018-01-17T23:39:08.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2024-05-24T10:57:30.000Z (5 months ago)
- Last Synced: 2024-07-05T13:46:17.260Z (4 months ago)
- Topics: fluent, fluent-database, fluent-driver, postgresql, server-side-swift, swift, swift-linux, vapor, vapor-service
- Language: Swift
- Homepage:
- Size: 327 KB
- Stars: 147
- Watchers: 24
- Forks: 53
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
FluentPostgresDriver is a [FluentKit] driver for PostgreSQL clients. It provides support for using the Fluent ORM with PostgreSQL databases, and uses [PostgresKit] to provide [SQLKit] driver services, [PostgresNIO] to connect and communicate with the database server asynchronously, and [AsyncKit] to provide connection pooling.
[FluentKit]: https://github.com/vapor/fluent-kit
[SQLKit]: https://github.com/vapor/sql-kit
[PostgresKit]: https://github.com/vapor/postgres-kit
[PostgresNIO]: https://github.com/vapor/postgres-nio
[AsyncKit]: https://github.com/vapor/async-kit### Usage
Use the SPM string to easily include the dependendency in your `Package.swift` file:
```swift
.package(url: "https://github.com/vapor/fluent-postgres-driver.git", from: "2.0.0")
```For additional information, see [the Fluent documentation](https://docs.vapor.codes/fluent/overview/).