Skip to content

Commit 9ae8c1f

Browse files
committed
Prerequisits for tests completed
To run the test for date and datetime outparams an additional database procedure is needed.
1 parent 66759fe commit 9ae8c1f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

test/outparams.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,13 @@
6363
END;
6464
/
6565
66+
CREATE OR REPLACE PROCEDURE procDateTimeOutParam(outParam1 OUT DATE, outParam2 OUT TIMESTAMP)
67+
IS
68+
BEGIN
69+
select sysdaten, systimestamp into outParam1, outParam2 from dual;
70+
END;
71+
/
72+
6673
BEGIN
6774
EXECUTE IMMEDIATE 'DROP TABLE basic_lob_table';
6875
EXCEPTION

0 commit comments

Comments
 (0)