Primer Commit

This commit is contained in:
2023-06-08 11:55:59 -03:00
commit a269361962
432 changed files with 203156 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
--------------------------------------------------------
-- DDL for Type HTTP_HEADERS_OBJ
--------------------------------------------------------
CREATE OR REPLACE EDITIONABLE TYPE "ENVX_OPER"."HTTP_HEADERS_OBJ" FORCE AS OBJECT
( /* TODO enter attribute and method declarations here */
campo VARCHAR2(100),
valor VARCHAR2(500)
)
/

View File

@@ -0,0 +1,9 @@
--------------------------------------------------------
-- DDL for Type HTTP_HEADERS_TAB
--------------------------------------------------------
CREATE OR REPLACE EDITIONABLE TYPE "ENVX_OPER"."HTTP_HEADERS_TAB"
AS TABLE OF http_headers_obj/* datatype */;
/