Building a PL/SQL Code Parser (using PL/SQL), Part 3
Continuing with the parser, begun week in PL/SQL Parser Part 1 and PL/SQL Parser Part 2, today I am going to modify the code to account for keywords, operators and data. By data, I don’t mean strings. I mean anything not a keyword, not a comment and not an operator. Data may be a quoted string (which we accounted for in Part 2), but it is also non-language functions and procedures. If you call a user defined procedure, that procedure call is considered data (at least it is here, for now).
In the code presented below, I have done several things.
Click to continue reading “Building a PL/SQL Code Parser (using PL/SQL), Part 3″
Read the rest of this entry »


