摘要:
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); } 阅读全文
摘要:
@bat调用sql文件 sqlplus user/pass@orcl @F:\factory.sql@将所有的存储过程封装在sql中 factory.sql:exec pro_factory(&identifier,¶m);@pro_factory.pro存储过程封装所有的子存储过程,并设置参数identifier区分不同的存储过程create or replace procedure pro_factory(identifier in number, param in varchar2) isbegin if identifier=0 then pro_1(param 阅读全文