Messages involved in SqlConnection

carpe2

Freshman
Joined
Jan 16, 2004
Messages
42
Location
Spain
Hi,
I would like to know which are the messages involved in a Sql Connection using the .net command SqlConnection. It would be something similar to ask and answer that Web Services works under SOAP, and SOAP is based in XML, and all runs under http, but I don´t know what happens in a SQL connection. Would it be with http if the connection is against other machine?? If it is a local connection, how does .net work??

Thanks in advance.
 
It is not useing http.

On remote connections it is useing raw tcp connections on port 443 ( default )
and locally it is useing shared memory.
 
Back
Top