vs2005怎么调用sql语句,需要加什么头文件?

你如我要写 update status=4 from abc where id = 0001这句话,直接写是通不过的
2024-12-29 01:46:39
推荐回答(3个)
回答1:

先添加命名空间
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();

上面语句对不同的数据库系统稍有不同,注意把第一句中的“你数据库的名称”改成你所用数据库的名字。

回答2:

//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();

回答3:

using System.Data;
using System.Data.SqlClient;