[Zope-Checkins] CVS: Products/DCOracle2/test - procdef.sql:1.11.4.2 test15.py:1.1.2.2
Matthew T. Kromer
matt@zope.com
Tue, 12 Feb 2002 16:21:58 -0500
Update of /cvs-repository/Products/DCOracle2/test
In directory cvs.zope.org:/tmp/cvs-serv27082/test
Modified Files:
Tag: dco2-object-branch
procdef.sql test15.py
Log Message:
More TABLE OF stuff
=== Products/DCOracle2/test/procdef.sql 1.11.4.1 => 1.11.4.2 ===
);
+ procedure RETURNTAB (
+ POEM out string_tab
+ );
+
procedure NUM(
VALUE in out number
);
@@ -166,6 +170,19 @@
end LOOP;
end TAKETAB;
+
+ procedure RETURNTAB (
+ POEM out string_tab
+ ) is
+
+ begin
+ POEM(1) := 'Mary';
+ POEM(2) := 'had';
+ POEM(3) := 'a';
+ POEM(4) := 'little';
+ POEM(5) := 'lamb';
+ end RETURNTAB;
+
end EMP_ACTIONS;
/
=== Products/DCOracle2/test/test15.py 1.1.2.1 => 1.1.2.2 ===
print c.procedures.emp_actions.taketab(['Mary','had','a','little','lamb'])
+
+print c.procedures.emp_actions.returntab()