Open steven-contreras-datapipertech opened 1 year ago
So far, I am thinking a "reverse parse" grammar will be needed in order to do this the "right" way. What are your thoughts?
For further context, here is my particular use-case:
SQL_DML_Command
- and using it's "from" and "where" clause to craft/convert to a select SQL statement, specifying the docid as column in the select SQL statementThus, I am thinking the best/cleanest way to do this would be to build out a "reverse parse" grammar from SQL_DML_Command
to SQL (text).
Your thoughts?
I've found an alternate method to accomplish this.
After successfully implementing this in my API, I wonder if this feature would be desirable in PyFireSQL itself - that is, would enforcing Referential Integrity restraints be a desirable feature in PyFireSQL? If so, we ought to have a more thorough design discussion. Let me know what you think.
This will be needed on rare occasions, at least in my project it is. I am currently working on a solution.