
PL/SQL
czmmiao
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
The Four Step Program to Using utPLSQL
The Four Step Program to Using utPLSQL Step 1. Install utPLSQL. Step 2. Choose a program to test and identify the test cases. Step 3. Build a test package. Step 4. Run your test. A note on whic...原创 2015-09-08 22:07:32 · 326 阅读 · 0 评论 -
ref cursor sys_refcursor传递结果集
SQL>set linesize 200 pages 100 SQL> variable v refcursor; SQL>exec open :v for'select * from emp'; PL/SQL procedure successfully completed. SQL>print:v; EMPNO ENAME ...原创 2016-11-11 09:19:54 · 289 阅读 · 0 评论