Quote:
string sorgu = "UPDATE Firmabilgileri SET Unvan='" + this.Unvan + "', Adres='" + this.Adres + "', Telefon='" + this.Telefon + "', Faks='" + this.Faks + "', EPosta='" + this.Eposta + "', Web='" + this.Web + "', VergiD='" + this.VergiD + "', " + "VergiN='" + this.VergiN + "'===>,<=== WHERE Kimlik=" + this.Kimlik;
I guess the problem is the extra comma just before the
WHERE
clause.
I any case you should debug your code to see the runtime value of
sorgu
string in order to spot the
SQL
syntax error.