Sql Server数据库的更新语句怎么写?Ado.Net的数据库更新语句又怎么写?

Sql Server数据库的更新语句怎么写?Ado.Net的数据库更新语句又怎么写?,第1张

string cnn = ConfigurationManager.ConnectionStrings["youSqlConn"].ConnectionString

using (SqlConnection cn = new SqlConnection())

{

cn.ConnectionString = cnn

cn.Open()

SqlCommand cmd = new SqlCommand()

cmd.Connection = cn

cmd.CommandText = "update table set field='"+ 你的变量+"' where id="+更新条件

cmd.ExecuteNonQuery()//执行更新

}

看一下这样行不

SqlConnection Conn = new SqlConnection("server=localhostuid=sapwd=database=ddb")

SqlDataAdapter da = new SqlDataAdapter("select *from book",con)

DataSet ds = new DataSet()

da.Fill(ds,"book")

SqlCommand updateCmd = new SqlCommand("Update book set bookname='javascript'",Conn)

da.UpdateCommand=updateCmd

da.Update(ds)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9391120.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-27
下一篇 2023-04-27

发表评论

登录后才能评论

评论列表(0条)

保存