-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Move getSQLResultCasing
code into ORM from DBAL
#8887
Milestone
Comments
@greg0ire its flexible enough that I believe this issue can be closed for now. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
DBAL 2 deprecates and DBAL 3 removes the
getSQLResultCasing
API, which we use to work around Oracle, PostgreSQL and MySQL differences in the default result casing.To avoid a larger refactoring and be forwards compatible, we need move this functionality into ORM and provide a strategy pattern with different implementations based on DBAL 2 or 3.
A factory method at some point in the ORM should select the right strategy based on DBAL version and database platform and make the service available to everyone who needs sql result casings.
The text was updated successfully, but these errors were encountered: