I\'m basically trying to figure out the simplest way to perform your basic insert operation in C#.NET using the SqlClient namespace.
I\'m using SqlConnection<
SqlConnection<
using (SqlConnection myConnection new SqlConnection("Your connection string")) { SqlCommand myCommand = new SqlCommand("INSERT INTO ... VALUES ...", myConnection); myConnection.Open(); myCommand.ExecuteNonQuery(); }