You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We already have the Condition classes tracked in their own issue, because they have some useful functionality when combining different logical conditions, but this issue covers all the other parts of a query that might be output in a different way between different database drivers.
For example:
like comparison uses slightly different syntax in MySQL to SQLite and Postgres (field like 'gr?g' in MySQL vs. field like 'gr_g' in others)
// TODO: More examples to flesh out the syntactical differences between the major vendors.
The text was updated successfully, but these errors were encountered:
We already have the
Condition
classes tracked in their own issue, because they have some useful functionality when combining different logical conditions, but this issue covers all the other parts of a query that might be output in a different way between different database drivers.For example:
like
comparison uses slightly different syntax in MySQL to SQLite and Postgres (field like 'gr?g'
in MySQL vs.field like 'gr_g'
in others)// TODO: More examples to flesh out the syntactical differences between the major vendors.
The text was updated successfully, but these errors were encountered: