Andy Dufresne
Andy Dufresne

Reputation: 6180

Language recognizers in Oracle

I wanted to know if there are any language recognizers/parsers in sql (we use Oracle as our relational database) similar to third party libraries like antlr or javacc in java. The intent is to define a grammar which can parse a language(string) and convert it to a sql query.

Upvotes: 1

Views: 150

Answers (1)

Jim Garrison
Jim Garrison

Reputation: 86774

Not built-in, but in Oracle you can write stored procedures in Java and have access to antlr, cup, javacc, jflex, etc.

Upvotes: 2

Related Questions