SqlConnection myconnection = new SqlConnection("server=RHGVR-1667F3F5E;Database=vanamu;Trusted_Connection=yes;");

myconnection.Open();

SqlCommand mycommand = new SqlCommand("insert Usedetails ( Personname, Address, City, State, Zip) values( Rami, lutz hall, commerce, texas, 75429)");

mycommand.ExecuteNonQuery();

myconnection.Close()

In the above code plz correct the store procedure that i have used there. and also the connection strings. Iam getting errors.