Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vapor/fluent-mysql-driver
🖋🐬 Swift ORM (queries, models, relations, etc) built on MySQL.
https://github.com/vapor/fluent-mysql-driver
fluent fluent-database fluent-driver mysql server-side-swift swift swift-linux vapor vapor-service
Last synced: 25 days ago
JSON representation
🖋🐬 Swift ORM (queries, models, relations, etc) built on MySQL.
- Host: GitHub
- URL: https://github.com/vapor/fluent-mysql-driver
- Owner: vapor
- License: mit
- Created: 2016-02-23T06:28:00.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2024-05-01T08:46:07.000Z (8 months ago)
- Last Synced: 2024-05-18T22:53:07.870Z (7 months ago)
- Topics: fluent, fluent-database, fluent-driver, mysql, server-side-swift, swift, swift-linux, vapor, vapor-service
- Language: Swift
- Homepage:
- Size: 402 KB
- Stars: 76
- Watchers: 27
- Forks: 52
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- TheList - MySQL driver for Fluent
README
FluentMySQLDriver is a [FluentKit] driver for MySQL clients. It provides support for using the Fluent ORM with MySQL databases, and uses [MySQLKit] to provide [SQLKit] driver services, [MySQLNIO] 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
[MySQLKit]: https://github.com/vapor/mysql-kit
[MySQLNIO]: https://github.com/vapor/mysql-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-mysql-driver.git", from: "4.0.0")
```For additional information, see [the Fluent documentation](https://docs.vapor.codes/fluent/overview/).