APPENDIX
F
Wrapping PL/SQL Code Primer
Oracle Database 12c provides the capability to wrap your PL/SQL stored programs. Wrapping your code encapsulates the business logic of your applications from prying eyes by hiding (or obfuscating) the source code. It converts the clear text in the database to an unreadable stream of data. You can obfuscate the clear text by using the command-line
wrap
utility or by calling the dbms_ddl
package’s create_wrapped
procedure or WRAP
function.You should wrap only the implementation details, which means you should wrap only functions, procedures, package bodies, and type bodies. This leaves the package specification ...
Get Oracle Database 12c PL/SQL Programming now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.