Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Zaktualizuj instrukcję w MySQL za pomocą C#

Problem: Brakuje comma po location w zapytaniu.
Rozwiązanie: Musisz oddzielić parameters używając comma .

Sugestia: Użyj parameterized queries aby uniknąć SQL Injection Attacks .

Spróbuj tego:

private void Update(string num,string name, string quant, string location, string category, string numquery)
    {
       // "UPDATE Inventory SET Inventorynumber='"+ num +"',Inventory_Name='"+name+"', Quantity ='"+ quant+"',Location ='"+ location+"' Category ='"+ category+"' WHERE Inventorynumber ='"+ numquery +"';";
        string query = "UPDATE Inventory SET [email protected],[email protected]_Name, Quantity [email protected] ,Location [email protected],Category [email protected] WHERE Inventorynumber [email protected]";
        if (this.OpenConnection() == true)
        {
            MySqlCommand cmd = new MySqlCommand();
            cmd.CommandText = query;
            cmd.Parameters.AddWithValue("@Inventorynumber",Convert.ToInt16(num));
            cmd.Parameters.AddWithValue("@Inventory_Name",name);
            cmd.Parameters.AddWithValue("@Quantity",quant);
            cmd.Parameters.AddWithValue("@Location",location);
            cmd.Parameters.AddWithValue("@Category",category);
            cmd.Parameters.AddWithValue("@Inventorynumber",Convert.ToInt16(numquery));
            cmd.Connection = serverconnection;
            cmd.ExecuteNonQuery();
            this.CloseConnection();
            Bind();
        }
    }


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Co to jest indeks pełnotekstowy i kiedy należy go używać?

  2. Jak napisać REST API?

  3. Co jest lepsze, niejawne czy jawne sprzężenie?

  4. Jak mogę filtrować zapytanie według części godzinowej pola DateTime w MySQL?

  5. mysql połączone unikalne klucze