views:

100

answers:

2

Hi,

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!

A: 

What do you mean run FROM service broker? SB is in essence a message queuing system.

callisto
He probably means Activation: http://msdn.microsoft.com/en-us/library/ms171617.aspx
Remus Rusanu
A: 

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.

Nestor