Can Sequel parse mysql SQL queries? #2260
Closed
leenyburger
started this conversation in
General
Replies: 1 comment 1 reply
-
It is explicitly part of Sequel's design that it does not attempt to parse SQL. So you'll have to look for other tools to do what you want. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm using Sequel to connect to third party databases and execute SQL.
My app writes SQL with AI then de-parses the queries to enforce tenancy boundaries on each table using
pg_query
for Postgres databases.I now need to support mysql and I was wondering if there is a plugin for
sequel
that will break queries into their ASTs? Or if there's a third party gem anyone knows about that does this?Beta Was this translation helpful? Give feedback.
All reactions