You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Extra tag generated with default value -1. This can be caused due to limit attribute
<Paramname="l"type="number"required="true"min="5"max="20"value="5"/>
<Sqlid="loc"limit="l" >
select name, lat, lon from city where name like '$q%'
</Sql>
<m:paramname="l"type="NUMBER"value="${mtgReq.params['l']}"max="20.0"min="5.0"defaultValue="5"isRequired="true"/>
<m:paramname="l"value="${mtgReq.params['l']}"type="number"defaultValue="-1"/>
<sql:queryvar="loc"dataSource="${datasource}"maxRows="${mtgReq.params['l']}">select name, lat, lon from city where name like CONCAT(? ,'%')
<sql:paramvalue="${mtgReq.params['q']}"/>
</sql:query>
The text was updated successfully, but these errors were encountered:
Extra tag generated with default value -1. This can be caused due to limit attribute
The text was updated successfully, but these errors were encountered: