C#如何执行update语句3
发布网友
发布时间:2023-11-09 16:04
我来回答
共4个回答
热心网友
时间:2024-04-11 01:51
用C#sqlserver实现增删改查
using System.Data;
using System.Data.SqlClient;
//先打开两个类库文件
SqlConnection con = new SqlConnection();
// con.ConnectionString = "server=505-03;database=ttt;user=sa;pwd=123";
con.ConnectionString = "server=.;database=stu;uid=sa;pwd=sa";
con.Open();
/*
SqlDataAdapter 对象。 用于填充DataSet (数据集)。
SqlDataReader 对象。 从数据库中读取流..
后面要做增删改查还需要用到 DataSet 对象。
*/
SqlCommand com = new SqlCommand();
com.Connection = con;
com.CommandType = CommandType.Text;
com.CommandText = "SQL的语句";
SqlDataReader dr = com.ExecuteReader();//执行SQL语句
dr.Close();//关闭执行
con.Close();//关闭数据库
热心网友
时间:2024-04-11 01:51
SqlCommand cmd=new SqlCommand("Updatestring",SqlConnection);
cmd.ExecuteNoneQuery();
热心网友
时间:2024-04-11 01:47
SqlDataAbater sql = new SqlDataAbater(更新语句,路径)
热心网友
时间:2024-04-11 01:49
OracleConnection con = new OracleConnection("连接字符串");
OracleCommand cmd = new OracleCommand("Update语句", con);
int temp=cmd.ExecuteNonQuery();
if(temp>0)
{
Console.WriteLine("修改成功");//控制台
MessageBox.Show("修改成功");//WinForm
Page.ClientScript.RegisterStartupScript(this.GetType(), " ", "alert('修改成功');", true);//Asp.Net
}