File tree 3 files changed +11
-4
lines changed
3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -380,6 +380,7 @@ export default class Generate extends Command {
380
380
description : 'This creates an empty project with MLE and Oracle database connection starter code.'
381
381
} ,
382
382
] ,
383
+ pageSize : 10 ,
383
384
default : 'node-vanilla'
384
385
} ,
385
386
) : template ;
Original file line number Diff line number Diff line change @@ -191,7 +191,12 @@ CREATE OR REPLACE PACKAGE BODY user_package AS
191
191
END user_package;
192
192
193
193
-- Call MLE functions via the user_package in SQL*Plus or SQLcl
194
- EXECUTE USER_PACKAGE .NEWUSERFUNC (' EMILY' );
194
+ DECLARE
195
+ userId NUMBER ;
196
+ BEGIN
197
+ userId := USER_PACKAGE .NEWUSERFUNC (' EMILY' );
198
+ DBMS_OUTPUT .PUT_LINE (userId);
199
+ END;
195
200
196
201
SELECT USER_PACKAGE .GETUSER (5 );
197
202
Original file line number Diff line number Diff line change 1
- drop table todo_list;
2
- drop table categories;
3
- drop table users;
1
+ drop table todo_list CASCADE CONSTRAINTS PURGE;
2
+ drop table categories CASCADE CONSTRAINTS PURGE;
3
+ drop table users CASCADE CONSTRAINTS PURGE;
4
+
4
5
EXIT;
You can’t perform that action at this time.
0 commit comments