本文介绍了删除C#应用程序中的两个字段的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

 SqlConnection sqlCon =  new  SqlConnection(str); 

// 调用要删除的语句
SqlCommand sqlCmd = new SqlCommand( 从Transfer中删除其中empno =' + txt_Empno.Text + ',sqlCon);
sqlCmd.CommandType = System.Data.CommandType.Text;







我需要在删除命令中包含第二个字段请协助





Trans_No 是一个文本名为 txt_Trans 的字段



请在上面的删除命令中包含它



我尝试了什么:



我重新访问了我之前的代码

解决方案



SqlConnection sqlCon = new SqlConnection(str);

        //Call the statement to delete
        SqlCommand sqlCmd = new SqlCommand("Delete from Transfer  Where empno='" + txt_Empno.Text + "'", sqlCon);
        sqlCmd.CommandType = System.Data.CommandType.Text;




I need to include a second field in the delete command please assist


say Trans_No is a field with text name txt_Trans

Please include it in the delete command above

What I have tried:

I have revisited my earlier codes

解决方案




这篇关于删除C#应用程序中的两个字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-18 19:18
查看更多