摘要: (注:在看到大家如此关注JS里头的这几个对象,我试着把原文再修改一下,力求能再详细的阐明个中意义 2007-05-21)在提到上述的概念之前,首先想说说javascript中函数的隐含参数:argumentsArguments该对象代表正在执行的函数和调用它的函数的参数。[function.]arguments[n]参数function :选项。当前正在执行的 Function 对象的名字。 n :选项。要传递给 Function 对象的从0开始的参数值索引。 说明Arguments是进行函数调用时,除了指定的参数外,还另外创建的一个隐藏对象。Arguments是一个类似数组但不是数组的对象, 阅读全文
posted @ 2012-07-05 19:24 琥珀光 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 1、select 'Drop table '||table_name||';' from all_tables where owner='要删除的用户名(注意要大写)'; 2、删除所有表以用户test为例for example:declare cursor cur1 is select table_name from dba_tables where owner='TEST';begin for cur2 in cur1 loop execute immediate 'drop table test.'||cur2 阅读全文
posted @ 2012-07-05 10:46 琥珀光 阅读(215) 评论(0) 推荐(0) 编辑