Mysql
 sql >> Database >  >> RDS >> Mysql

Il parametro MySqlCommand non funziona

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