asp.net中如何修改数据库中的字段
3个回答
展开全部
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();
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();
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询