Is it possible to access SQL Server Service Broker from a C # application?

I want to use SQL Server Service Broker to create a message (inside SQL Server) and to read it in an external C # application.

I am limited to Windows 2003 running SQL Server 2005. I have read a bunch of articles that hint that this is a possibility, but I see no example anywhere. Is it possible?

+6
source share
1 answer

T-SQL has instructions for accessing Service Broker: SEND, RECEIVE, and others. You can use ADO.NET to execute them.

+3
source

Source: https://habr.com/ru/post/925154/


All Articles