SQL / C# – 执行查询的最佳方法

前端之家收集整理的这篇文章主要介绍了SQL / C# – 执行查询的最佳方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要从c#类中执行一个SQL查询.我已经想到了2个选择

>启动sqlcmd的进程.
>使用sqlCommand对象.

我的问题是哪个更好的方法解决方案只能在短时间内与服务器保持连接很重要.

如果上述不好,我对其他想法开放.

提前致谢.

解决方法

使用sqlCommand.此代码只会在很短的时间内保持连接(只要您的查询执行正常):
DataTable results = new DataTable();

using(sqlConnection conn = new sqlConnection(connString))
    using(sqlCommand command = new sqlCommand(query,conn))
        using (sqlDataAdapter dataAdapter = new sqlDataAdapter(command))
           dataAdapter.Fill(results);

猜你在找的MsSQL相关文章