rspec/rules/S107/plsql/split-example.adoc
2023-08-10 16:54:47 +02:00

22 lines
261 B
Plaintext

[source,plsql]
----
SET SERVEROUTPUT ON
CREATE PROCEDURE storeVector(
x PLS_INTEGER,
y PLS_INTEGER,
z PLS_INTEGER)
BEGIN
-- store the vectors values
END;
/
BEGIN
storeVector(0, 0, 0);
storeVector(1, 1, 1);
END;
/
DROP PROCEDURE storeVector;
----