例如
Object result;
我直接这样是不行的
if(result==null) //这样是错的 ...
要这样判断
if(result == System.DBNull.Value) //这样才是对的 ...