Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dynamic sql example based on dialect #13

Closed
tanner0101 opened this issue Mar 19, 2019 · 0 comments
Closed

dynamic sql example based on dialect #13

tanner0101 opened this issue Mar 19, 2019 · 0 comments
Labels
enhancement New feature or request
Projects

Comments

@tanner0101
Copy link
Member

In Fluent 4, it should be possible to use custom types that can change dynamically based on dialect. For example:

struct CustomTextType: SQLExpression {
    func serialize(to serializer: SQLSerializer) {
        switch serializer.dialect {
        case .mysql: serializer.write("VARCHAR(64)")
        default: serializer.write("TEXT")
        }
    }
}

struct User: Model {
    let name = Field<String>("name", dataType: .sql(CustomTextType()))
    ...
}

We should have a test case to ensure this works and document it.

@tanner0101 tanner0101 added the enhancement New feature or request label Mar 19, 2019
@tanner0101 tanner0101 added this to To Do in Vapor 4 via automation Mar 19, 2019
Vapor 4 automation moved this from Backlog to Done May 8, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
Vapor 4
  
Done
Development

No branches or pull requests

1 participant