本文介绍了如何在SQL Server 2005中使用SQLHelper?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道如何在SQL Server中使用SQLHelper,任何代码示例?
例如,我在c#中创建了以下语句,

I want to know how is used the SQLHelper in the SQL Server, any code sample?
For instance I created the following statements in c#,

SqlCommand cmmnd = new SqlCommand("SELECT * FROM Persons", Connection.Cnnt);<br />
SQLHelper Cmd = new SQLHelper();<br />
Cmd.ExecuteDataTable(cmmnd);



那我该如何在服务器中重新创建相同的东西呢?



Then how I recreate the same thing in the server?

推荐答案


这篇关于如何在SQL Server 2005中使用SQLHelper?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-21 09:20