Código:
me retorna los campos y registros de manera correcta , pero si cambio la consulta en base a recibir un parámetro llamado art con valor default 28-wilson me marca un errorselect t1.articulo,t1.descripcion,t2.variedad from articulos as t1 left outer join variedades as t2 on t1.id_var = t2.id where t1.articulo in ('28-wilson')
Código:
Error: Sourced file : inline evaluation of : ''28-wilson;" ilegal use of undefined variable,class, or 'void' literal ,estaría muy agradecido si alguien me puede ayudar a definir correctamente el parámetro pues en el irían los artículos a buscar podría ser solo un articulo o varios select t1.articulo,t1.descripcion,t2.variedad from articulos as t1 left outer join variedades as t2 on t1.id_var = t2.id where t1.articulo in ('$P{art}')