MikeKutz
MikeKutz
forked and branched w/ initial upload. Right now, I'm trying to figure out how to get the annotation information to the event listener w/o modifying `ut_event_item`
> I'm making here also assumption that this feature is free. DB Feature is free but not available on SE (XE/FREE? yes)... oh, and only for 12c+. Within my fork+branch,...
UPDATE === In order to align with RAS Procedures, annotations were renamed to: - `--%xsuser` - `--%xsextuser` - `--%xsrole` - `--%xsextrole` - `--%xsdisableroles` - `--%xsnsattr` All annotations are working as...
I'm about to say "no" for this one. The need to handle "fragments" appears to be more of a feature of a "template editor" than something that should be specific...
I have come to the conclusion that the "template editor based on the 'fragment' idea" needs to be independent from the code generation engine. Right now, the editor I have...
Right now, I'm storing one "fragment" per row in TE_TEMPLATES. "fragments", "nested templates", and "helpers" might all be the same thing. I'm using the term "fragments" because I access them...
If anyone is interested, I have a "proof of concept" template editor based on the above concept running on apex.oracle.com. It still needs work. But, you can develop a collection...
FYI - a "fragment", in this context, is synonymous to a "block" in #36 The solution for #36 uses the Java dot notation for the names (see #43 for naming...
Verified Bug Code === ```sql DECLARE P_CLOB CLOB; BEGIN P_CLOB := lpad( 'X', 32767, 'X') || 'X'; -- P_CLOB := P_CLOB || P_CLOB ; TEPLSQL.output_clob ( P_CLOB => P_CLOB) ;...
@xendren Any time you report a bug, please include any ORA numbers and a simple example to reproduce. When you can, please try this loop within the `output_clob` body. Make...