先添加命名空间
using System.Data;
using System.Data.SqlClient;
后用下面代码处理,只用你的一个语句是不行的。
//sql 连接字符串
string constr="server=.;database=你数据库的名称;uid=sa;pwd=;";
SqlConnection conn = new SqlConnection(constr);
SqlCommand comm = new SqlCommand();
comm.Connection = conn;
comm.CommandType = CommandType.Text;
//这里就是你要执行的SQL语句
comm.CommandText = "update status=4 from abc where id = 0001";
if (conn.State != ConnectionState.Open)
{
conn.Open();
}
comm.ExecuteNonQuery();
conn.Close();
上面语句对不同的数据库系统稍有不同,注意把第一句中的“你数据库的名称”改成你所用数据库的名字。
//sql 连接字符串
SqlConnection conn = new SqlConnection("Connect String");
SqlCommand comm = new SqlCommand();
comm.Connection = conn;
comm.CommandType = CommandType.Text;
//这里就是你要执行的SQL语句
comm.CommandText = "update status=4 from abc where id = 0001";
if (conn.State != ConnectionState.Open)
{
conn.Open();
}
comm.ExecuteNonQuery();
conn.Close();
using System.Data;
using System.Data.SqlClient;