forked from doberkofler/PLSQL-JSON
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sql
More file actions
53 lines (48 loc) · 674 Bytes
/
install.sql
File metadata and controls
53 lines (48 loc) · 674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
*
* NAME
* install.sql
*
* AUTHOR
* Dieter Oberkofler
*
* FUNCTION
* Install the plsql_json objects
*
*/
-- uninstall all object
@@uninstall.sql
-- install the headers
@@json_keys.tps
show errors
@@json_node.tps
show errors
@@json_nodes.tps
show errors
@@json_value.tps
show errors
@@json_object.tps
show errors
@@json_array.tps
show errors
@@json_utils.pks
show errors
@@json_parser.pks
show errors
@@json_debug.pks
show errors
-- install the bodies
@@json_node.tpb
show errors
@@json_value.tpb
show errors
@@json_object.tpb
show errors
@@json_array.tpb
show errors
@@json_utils.pkb
show errors
@@json_parser.pkb
show errors
@@json_debug.pkb
show errors