Funční řešení:
SqlConnection sqlConnection = new SqlConnection(ConnectionString);
SqlCommand sqlCommand = new SqlCommand("INSERT INTO [Firma] ([Jmeno],[Ulice],[Mesto],[PSC],[Telefon],[Fax],[ICO],[IDV]) VALUES (@jmeno,@ulice,@mesto,@psc,@telefon,@fax,@ico,@idv)", sqlConnection);
sqlConnection.Open();
sqlCommand.Parameters.Add("@jmeno", jmeno);
sqlCommand.Parameters.Add("@ulice", ulice);
sqlCommand.Parameters.Add("@mesto", mesto);
sqlCommand.Parameters.Add("@psc", psc);
sqlCommand.Parameters.Add("@telefon", telefon);
sqlCommand.Parameters.Add("@fax", fax);
sqlCommand.Parameters.Add("@ico", ico);
sqlCommand.Parameters.Add("@idv", id);
sqlCommand.ExecuteNonQuery();
sqlConnection.Close();
Dobrá volba je hodit to do Try.
|