Why two connections?

G

Guest

I have built a very simple single form Application, with a sqlDataAdapter,
sqlConnection, dataSet and a Grid. As soon as I load the application and bind
the data (Fill the dataset or Open the Connection) there are two connections
from my App in SQL Server (sp_who2)

This means my App will take up two licenced connections to the Server, which
could be a problem.

Can anyone explain why this is?

Thanks
 
M

Mary Chipman [MSFT]

If it's licensing you're worried about, then don't. That's not how it
works. Many, many applications use multiple connections to SQL Server
to improve throughput. SQL Server licensing isn't per connection, it's
per CAL or per processor. See the "How to Buy" page at
http://www.microsoft.com/sql/howtobuy/default.asp for details.

--Mary
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top