属性 描述 name 配置的资源名称,相对于java:comp/env context。这个名称必须与$CATALINA_HOME/conf/server.xml中某个<Resource>元素定义的资源名称匹配,或者在/WEB-INF/web.xml中通过<resource-ref>或者<resource-env-ref>元素应用。
银河为证,我们相知,相恋,直到永远...... SQLdeclare type etype is table of emp.ename%type index by binary_integer; e1 etype; begin select ename bulk collect into e1 from emp; dbms_output.put_line(e1.count); for i in 1..e1.count loop dbms_output.put_line(e1(i)); end loop; end;