03 2013 档案

摘要:数据库建表语句为:CREATE TABLE `T_PERSON` ( `firstname` VARCHAR(10) NOT NULL, `lastname` VARCHAR(10) NOT NULL, `address` VARCHAR(20), `phone` int(10) unsigned, PRIMARY KEY (`firstname`,`lastname`)) ENGINE=InnoDB DEFAULT CHARSET=gb2312;方式一:基于实体类属性对于实体的PO类,有2个要求:1,必须继承Serializable接口2,必须重写equals()方法和hashco... 阅读全文
posted @ 2013-03-18 22:14 心意合一 阅读(252) 评论(0) 推荐(0) 编辑
摘要:linux wc简要说明:[123@123 123]$ wc --help用法:wc [选项]... [文件]...Print newline, word, and byte counts for each FILE, and a total line ifmore than one FILE is specified. With no FILE, or when FILE is -,read standard input. -c, --bytes print the byte counts -m, --chars print the char... 阅读全文
posted @ 2013-03-07 09:43 心意合一 阅读(276) 评论(0) 推荐(0) 编辑
摘要:linux中shell变量$#,$@,$0,$1,$2的含义解释: 变量说明: $$ Shell本身的PID(ProcessID) $! Shell最后运行的后台Process的PID $? 最后运行的命令的结束代码(返回值) $- 使用Set命令设定的Flag一览 $* 所有参数列表。如"$*"用「"」括起来的情况、以"$1 $2 … $n"的形式输出所有参数。 $@ 所有参数列表。如"$@"用「"」括起来的情况、以"$1" "$2" … "$n" 的形 阅读全文
posted @ 2013-03-05 17:22 心意合一 阅读(899) 评论(0) 推荐(0) 编辑
摘要:-b file 若文件存在且是一个块特殊文件,则为真-c file 若文件存在且是一个字符特殊文件,则为真-d file 若文件存在且是一个目录,则为真-e file 若文件存在,则为真-f file 若文件存在且是一个规则文件,则为真-g file 若文件存在且设置了SGID位的值,则为真-h file 若文件存在且为一个符合链接,则为真-k file 若文件存在且设置了"sticky"位的值-p file 若文件存在且为一已命名管道,则为真-r file 若文件存在且可读,则为真-s file 若文件存在且其大小大于零,则为真-u file 若文件存在且设置了SUID位 阅读全文
posted @ 2013-03-04 20:43 心意合一 阅读(205) 评论(0) 推荐(0) 编辑