The following information (corresponding to the values in the USER_PLSQL_OBJECT_SETTINGS data dictionary view) is available via inquiry directives: $$PLSQL_DEBUG $$PLSQL_OPTIMIZE_LEVEL $$PLSQL_CODE_TYPE $$PLSQL_WARNINGS $$NLS_LENGTH_SEMANTICS See the cc_plsql_parameters.sql file on the book’s web site for a demonstration that uses each of these parameters. Referencing unit name and line number Oracle implicitly defines two very useful inquiry directives for use in $IF and $ERROR directives: $$PLSQL_UNIT $$PLSQL_LINE You can call DBMS_UTILITY.FORMAT_CALL_STACK and DBMS_UTILITY. FORMAT_ERROR_BACKTRACE to obtain current line numbers, but then you must also parse those strings to find the line number and program unit name. These inquiry directives provide the information more directly. Here is an example: BEGIN Run cc_line_unit.sql to see a demonstration of using these last two directives. Note that when $$PLSQL_UNIT is referenced inside a package, it will return the name of the package, not the individual procedure or function within the package. Using the PLSQL_CCFLAGS parameter Oracle offers a new initialization parameter, PLSQL_CCFLAGS, that you can use with conditional compilation. Essentially, it allows you to define name-value pairs, and the name can then be referenced as an inquiry directive in your conditional compilation logic. Here is an example: ALTER SESSION SET PLSQL_CCFLAGS = 'use_debug:TRUE, trace_level:10'; The flag name can be set to any valid PL/SQL identifier, including reserved words and keywords (the identifier will be prefixed with $$, so there will be no confusion with normal PL/SQL code). The value assigned to the name must be one of the following: TRUE, FALSE, NULL, or a PLS_INTEGER literal. The PLSQL_CCFLAGS value will be associated with each program that is then compiled in that session. If you want to keep those settings with the program, then future compilations with the ALTER...COMPILE command should include the REUSE SETTINGS clause. Because you can change the value of this parameter and then compile selected program units, you can easily define different sets of inquiry directives for different programs. Note that you can refer to a flag that is not defined in PLSQL_CCFLAGS; this flag will evaluate to NULL. If you enable compile-time warnings, this reference to an undefined flag will cause Oracle to report a PLW-06003: unknown inquiry directive warning (unless the source code is wrapped). Please check back next week for the continuation of this article.
blog comments powered by Disqus |
|
|
|
|
|
|
|