[Zope-Checkins] CVS: Products/DCOracle2/test - procdef.sql:1.15

Matthew T. Kromer matt@zope.com
Wed, 12 Jun 2002 14:46:37 -0400


Update of /cvs-repository/Products/DCOracle2/test
In directory cvs.zope.org:/tmp/cvs-serv27784/test

Modified Files:
	procdef.sql 
Log Message:
Add description attribute population for SP return of a ref cursor


=== Products/DCOracle2/test/procdef.sql 1.14 => 1.15 ===
 	);
 
+	procedure EMPCUR(
+		CSR out REF_CURSOR
+	);
+		
+
+
 end EMP_ACTIONS;
 /
 
@@ -205,6 +211,13 @@
 		POEM(4) := 'little';
 		POEM(5) := 'lamb';
 	end RETURNTAB;
+
+	procedure EMPCUR (
+		CSR out ref_cursor
+	) is 
+	begin
+		open csr for select * from emp;
+	end EMPCUR;
 
 
 end EMP_ACTIONS;