string str="update table1 set col1=yourans"; // 数据库中要执行的语句修改table1中col字段
SqlConnection con = new SqlConnection();
con.ConnectionString = "server='CNWJ2MXTPC012\\SQLEXPRESS';database='E-learning';uid='sa';pwd='stone123'"; // 链接数据库
con.Open();
SqlCommand cd = new SqlCommand(str, con);
cd.ExecuteNonQuery(); // 执行语句
con.Close();
写一条sql语句嘛
修改数据库中的字段? 是字段还是值啊?