使用数据集的 SQL Server Service Broker
我正在将控制台应用程序转换为从 SQL Server 中的 Service Broker 运行2005。
该应用程序大量使用 DataSet 。
数据集是否应该在 SQLCLR 中工作?如何定义要使用的连接?有关于这方面的任何文档吗?
感谢您的帮助!
I am converting a console application to run from Service Broker in SQL Server 2005.
The application makes heavy use of DataSet.
Are DataSets supposed to work in SQLCLR? How do I define the connection to use? Is there any documentation about this?
Thanks for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的问题有点笼统,但我希望这对你有帮助:
DataSet 包含在程序集 System.data.dll 中 它是 SQLCLR 的批准的程序集之一。所以,是的,您可以使用数据集。
You question is a bit generic, but I hope this helps you:
DataSet is contained in the assembly System.data.dll which is one of the approved assemblies for the SQLCLR. So, yes, you can use DataSets.