一、定义子程序即执行一个特殊任务的一段分离的代码,它可以使减少重复代码且使程序易读。PERL中,子程序可以出现在程序的任何地方。定义方法为:sub subroutine{statements;}二、调用调用方法如下:1、用&调用&subname;...sub subname{...}2、先定义后调用...
分类:
其他好文 时间:
2014-12-30 15:06:19
阅读次数:
175
GO is like the end of a script.You could have multiple CREATE TABLE statements, separated by GO. It's a way of isolating one part of the script from a...
分类:
其他好文 时间:
2014-12-26 00:58:11
阅读次数:
260
You are performing a block media recovery on the tools01.dbf data file
in the SALES database using RMAN. Which two statements are correct in this
scenario? (Choose two.)
A. You must ensure that...
分类:
数据库 时间:
2014-12-24 11:47:06
阅读次数:
202
You want to use the SQL Tuning Advisor to generate recommendation
s for badly written SQL statements in your development environment. W
hich three sources can you select for the advisor to analyze?...
分类:
数据库 时间:
2014-12-20 11:44:42
阅读次数:
188
新建表空间官方例子 https://docs.oracle.com/database/121/SQLRF/statements_7003.htm#i2202468修改表空间官方例子 http://docs.oracle.com/database/121/SQLRF/statements_3002.h...
分类:
其他好文 时间:
2014-12-19 14:16:58
阅读次数:
152
注意提示信息:Mapped Statements collection does not contain value for Addressbook.pageSelect此问题的原因是Dao层使用的命名空间与Mapper文件中使用的不一致;HTTP Status 500 - Request processing failed; nested exception is org.mybatis.spr...
分类:
移动开发 时间:
2014-12-17 18:33:01
阅读次数:
287
造成这个问题的原因很多,我遇到的主要是因为这里的parameterType="java.lang.Integer"resultType="java.lang.Integer">被我写错了,因为是copy过来的,忘记了改变参数为parameterType="map"resultMap="BaseRes...
分类:
移动开发 时间:
2014-12-15 08:53:06
阅读次数:
183
我们都知道,只要合理正确使用PDO,可以基本上防止SQL注入的产生,本文主要回答以下两个问题:为什么要使用PDO而不是mysql_connect?为何PDO能防注入?使用PDO防注入的时候应该特别注意什么?一、为何要优先使用PDO?PHP手册上说得很清楚:Prepared statements an...
分类:
其他好文 时间:
2014-12-14 18:31:36
阅读次数:
194
for循环for VAR in LIST; do statements ...doneLIST列表: 1、直接给出 2、数值列表 {start..end},如{1..10} seq LAST seq FIRST LAST seq FIRST STEP LAST,如seq 1 2 10,会读取到135...
分类:
其他好文 时间:
2014-12-12 23:33:36
阅读次数:
187
第四章异常处理
PL/SQL 块是构成 PL/SQL 程序的基本单元
将逻辑上相关的声明和语句组合在一起
PL/SQL 分为三个部分,声明部分、可执行部分和异常处理部分
[DECLARE
declarations]
BEGIN
executable statements
[EXCEPTION
handlers]
...
分类:
数据库 时间:
2014-12-09 21:35:53
阅读次数:
336