+ "lineName = ?productLine "
+ "and isVisible = 1 ";
MySqlDataAdapter adap = new MySqlDataAdapter(sql, msc);
adap.SelectCommand.Parameters.Add("?productLine", productLine);
- Rimuovi gli apostrofi (').
- Cambia @ in ?, che è il prefisso dei parametri nelle query MySql.