当前位置: 代码迷 >> Web前端 >> 今天所遇之琐事
  详细解决方案

今天所遇之琐事

热度:154   发布时间:2012-11-23 22:54:33.0
今日所遇之琐事
今天浪费时间有三件事
1.ibatis null 返回 问题
select max(id) from customer

select nvl(max(id),0) from customer

jquery validate
debug:true
success:function(){}

ibatis
select * from #tableName#
change to
select * from $tableName$
  相关解决方案