sQueryString是SQL(增删查改)语句public Boolean ExecSQL(string sQueryString)
{
SqlConnection con = new SqlConnection(ConfigurationManager.AppSettings["conStr"]);
con.Open();
SqlCommand dbCommand = new SqlCommand(sQueryString, con);
try
{
dbCommand.ExecuteNonQuery();
con.Close();
}
catch
{
con.Close();
return false;
}
return true;
}
}建立一个类,明自己取,然后调用就是了例如:类 BC=NEW 类();STRING ist="INSERT INTO XX(1,2,3)VALUES(A,B,C)";BC.ExecSQL(ist);就可以了
首先建立一个数据连接,然后使用insert into 表名插入,select * from 表名查询,delete * from 表名删除数据 ,update * from表名修改数据。