摘要: public static void info(String[] param){ StringBuffer sb=new StringBuffer(); for(int i=0;i<param.length;i++){ sb.append(param[i]).append(","); } System.out.println(sb); } 阅读全文
posted @ 2013-06-19 13:33 爱笑的狐狸 阅读(440) 评论(0) 推荐(0) 编辑
摘要: @bat调用sql文件 sqlplus user/pass@orcl @F:\factory.sql@将所有的存储过程封装在sql中 factory.sql:exec pro_factory(&identifier,&param);@pro_factory.pro存储过程封装所有的子存储过程,并设置参数identifier区分不同的存储过程create or replace procedure pro_factory(identifier in number, param in varchar2) isbegin if identifier=0 then pro_1(param 阅读全文
posted @ 2013-06-19 13:11 爱笑的狐狸 阅读(2481) 评论(0) 推荐(0) 编辑