Replies: 1 comment
-
An example of some differences between db engines/dialects include, but not limited to:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is your feature request related to a problem? Please describe.
When the query builder is composing a runnable SQL statement, it will become imperative for the dialect of the destination engine to be known so we construct valid SQL statements.
Describe the solution you'd like
By default, a dialect can be set by the initial
Connection
object. For example if you declare to use the Neon connection object, it could preset the dialect to "postgres"You can explicitly set a dialect yourself.
Support the following dialects:
Describe alternatives you've considered
TBD
Additional context
TBD
Beta Was this translation helpful? Give feedback.
All reactions