发布网友 发布时间:2024-10-24 01:12
共1个回答
热心网友 时间:2024-10-24 09:57
SqlConnection conn =new SqlConnection(connString);
string sql=insert into .....;//插入语句
SqlCommand command=new SqlCommand(sql,conn);
int result=command.ExecuteNonQuery();//得到结果,看是否有插入成功。
if(result>0)
{
MessageBox.Show("插入成功!");//返回影响的行数大于0表示插入成功
}
else
{
MessageBox.Show("插入失败!");
}