拼接语句myeclipse 提示错误,好奇怪
if(command != null&& !"".equals(command.trim())){ sql.append(" and COMMAND =?"); paramList.add(command); }
我的myeclipse 在sql.append....那里有红线错误提示 The method append(String) is undefined for the type String
我的sql 是一个String
if(command != null&& !"".equals(command.trim())){ sql.append(" and COMMAND =?"); paramList.add(command); }
我的myeclipse 在sql.append....那里有红线错误提示 The method append(String) is undefined for the type String
我的sql 是一个String
2016-03-12
举报