摘要:
常用函数 1。oracle/decode()函数 & mysql /case when .. then ..else..end函数 (1)oracle处理返回结果:如处理ischeck值,值为2时,设置该值为0,否则为ischeck本身。 select decode(ischeck,2,0,isch 阅读全文
摘要:
RESTful架构 RestFul:Representational State Transfer 参考博文:http://www.ruanyifeng.com/blog/2011/09/restful --理解RestFul架构 http://www.ruanyifeng.com/blog/201 阅读全文
摘要:
Java异常 1、异常的分类: ① 非运行时异常(Checked Exception) Java中凡是继承自Exception但不是继承自RuntimeException的类都是非运行时异常 ② 运行时异常(Runtime Exception/Unchecked Exception) a) Runt 阅读全文