c#查询SQL数据库数据进度肿么计算

发布于2022-01-11 18:42:24
3个回答
admin
网友回答2022-01-11
throw一般是用于调试用的,而不是给用户看的。你可以尝试一下messageBox catch { messagebox.show(err); //此处再跳到其它程序代码。 }
admin
网友回答2022-01-11
你要考试的话找一本书查看一下考试大纲不就得了。我估计要考一些数据结构的知识,操作系统的知识,软件工程等知识吧。
admin
网友回答2022-01-11
//1.声明数据库连接字符串
string strcon = data source=.;initial catalog=itdb;uid=sa;pwd=sun@0918;
//2.创建数据库连接对象
SqlConnection con = new SqlConnection(strcon);
//3.打开数据库连接
con.Open();
//4.编写SQL语句
string sql = delete from phzw where name=' + id+';
SqlCommand cmd = new SqlCommand(sql, con);
//6.选择Command的适合方法
int res = cmd.ExecuteNonQuery();
if (res 0)
{
MessageBox.Show(删除成功);
this.BindData();
}
else
{
MessageBox.Show(删除失败);
}
//7.关闭数据库连接
con.Close();

这是删除的初级代码,新增和修改,只需修改SQL语句就可以了

回到
顶部