先安装Copssh_4.9.1_Personal_Installer 再装>Git-1.9.2-preview20140411>use git from git bash only>checkout windows打开开始菜单git bash: pwd 查看当前目录 cd打开目录 可以任意新建一个....
分类:
其他好文 时间:
2015-01-28 23:54:50
阅读次数:
339
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.executor.ExecutorException: Statement returned more than one row, whe...
分类:
其他好文 时间:
2015-01-27 21:34:41
阅读次数:
807
转自:http://www.cnblogs.com/sc-xx/archive/2011/12/03/2275084.html这个文档几乎包含了oracle游标使用的方方面面,全部通过了测试 1 -- 声明游标;CURSOR cursor_name IS select_statement 2 ...
分类:
数据库 时间:
2015-01-27 19:51:52
阅读次数:
124
目录一、DML触发器二、INSTEAD_OF触发器三、系统触发器四、删除触发器 修改触发器状态 关闭打开--说明--1.事件发生之前(BEFORE)事件发生之后(AFTER)--2.触发条件子句WHEN--3.语句级(STATEMENT)触发器和行级(ROW)触发器--3.1 STATEMENT:是...
分类:
其他好文 时间:
2015-01-27 18:06:00
阅读次数:
123
半年前接新项目, 来了一个前端, 由于只有我前后台都会, 就做业务层+辅助前端显示, 于是我决定使用MVC上面那句无关紧要的话让我改了好多遍, 转载请注明出处:http://www.cnblogs.com/zaiyuzhong/p/personal-opinions-of-mvc.html1. 查询...
分类:
Web程序 时间:
2015-01-27 10:59:39
阅读次数:
176
背景
最近在一道 Java 习题中,看到这样的一道题:
What is the output when this statement executed:
System.out.printf(-7 % 3);
正整数的取余运算大家都很熟悉,但是对于负数、实数的取余运算,确实给人很新鲜的感觉。于是我对此进行了一些探索。我发现,这里面还是颇有一点可以探索的东西的。
探究...
分类:
其他好文 时间:
2015-01-26 15:12:40
阅读次数:
182
Union Syntaxselect_statement UNION ALL select_statement UNION ALL select_statement ...UNION is used to combine the result from multiple SELECT stateme...
分类:
其他好文 时间:
2015-01-26 13:28:53
阅读次数:
142
EXPLAIN SyntaxEXPLAIN SyntaxHive provides anEXPLAINcommand that shows the execution plan for a query. The syntax for this statement is as follows:EXPL...
分类:
其他好文 时间:
2015-01-26 13:16:50
阅读次数:
294
网站整体效果如下首先创建空白解决方案和网站,在网站中拷贝Bootstrap文件、JQuery文件和需要用到的图片资源创建index.html文件,在文件中的区域导入bootstrap引用,搭建基本页面布局 Personal Resume ...
分类:
其他好文 时间:
2015-01-26 11:33:40
阅读次数:
1034
until循环 条件不满足进循环,条件满足时退出。 untilCONDITION;do statement ... done 例如: 1.写一个脚本,将输入的内容小写改成大写。 #!/bin/bash read-p"inputsometing"STR until[$STR==‘quit‘];do echo$STR|tr‘a-z‘‘A-Z‘ done 2.写一个脚本,每隔5秒检测..
分类:
其他好文 时间:
2015-01-25 19:43:00
阅读次数:
185