今天Sery(http://sery.blog.51cto.com/)在qq上说要送我一本他刚写的书《互联网运营智慧》,因为里面引用了我写的一段程序。 #!/usr/bin/perl -w use strict; use LWP::Simple; use URI::Escape; use Digest::MD5; my ($mobile, $content) AR…
set serveroutput onaccept num prompt 请输入一个数字;
declare
pnum number : #beginif pnum0 then dbms_output.put_line(您输入的数据是0);elsif pnum1 then dbms_output.put_line(您输入的数据是1);elsif pnum2 then dbms_output.put_line(您输入的数据是2);e…
mysql查询表名: SELECT table_name FROM information_schema.tables WHERE table_schemasell AND table_typebase table;查询表中的字段: SELECT column_name FROM information_schema.columns WHERE table_schemasell AND table_nameseller_infoSpringB…
C#中使用Oracle 存储过程笔记1. 调用包含out/ in out类型参数的存储过程 存储过程: CREATE OR REPLACE PROCEDURE "SITE_EDITSITEDATAEXIST" (id_ number,name_ varchar2,httpRoot_ varchar2,flag out integer )//out 只具备输出功能 in out 为输入/输出型astempNum …