question

Hussainpatel avatar image
Hussainpatel asked

what is server connectivity...?

how application connected to the server can u suggest some code
sql-server-2008
1 comment
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Grant Fritchey avatar image Grant Fritchey ♦♦ commented ·
For all helpful answers, click on the thumbs up next to those answers. If any one answer helped to solve the problem, click on the check box next to that answer.
1 Like 1 ·
Grant Fritchey avatar image
Grant Fritchey answered
That is simply a short hand phrase for connections to and from the server, usually from a client application or an application server. In short, in order to get data out of SQL Server you need to be able to connect to the server. There are a series of network protocols that define how the SQL Server is exposed and accessed over the network. There are also different programming interfaces for connecting to the server. These connections are made through what is called a connection string, basically defining the network location and login information. [This article on MSDN][1] should be enough to get you started. [1]: http://msdn.microsoft.com/en-us/sqlserver/connectivity.aspx
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

ThomasRushton avatar image
ThomasRushton answered
Following on from @Grant's answer, if you're looking for Connection String information, have a look at http://www.connectionstrings.com
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.