摘要: 个人练习 阅读全文
posted @ 2013-04-06 20:54 果c子 阅读(150) 评论(0) 推荐(0) 编辑
摘要: oracle存储过程使用简单例子oracle中写好存储过程1 create or replace procedure proc_delete(strid in 表名.字段%type,delresult out varchar2)2 as3 begin4 delete from 表名 where 字段 = strid;5 delresult := SQL%rowcount;6 7 commit;8 end proc_delete;oracle中plsql调用1 declar... 阅读全文
posted @ 2013-04-06 20:40 果c子 阅读(199) 评论(0) 推荐(0) 编辑
摘要: oracle中的包 阅读全文
posted @ 2013-04-06 20:26 果c子 阅读(277) 评论(0) 推荐(0) 编辑