在数据库中找到0结果时设置默认值

时间:2019-05-05 04:55:11

标签: java

如果我的sql结果返回0行,我试图设置apikey =“ GG”。

       if(customer.getApiKey().equals(null))
        {
            trans.setApiKey("GG");
        }
        else
        {
            trans.setApiKey(customer.getApiKey());
        }

但似乎无法正常工作。 -> customer.getApiKey()。equals(null)

0 个答案:

没有答案