The connection string would be :
For SQL Server Authentication, use this syntax specify a user name and
password, where asterisks represent a valid user name and password.
"Persist Security Info=False;User ID=*****;Password=*****;Initial
Catalog=AdventureWorks;Server=MySqlServer"
Use this syntax to connect using an IP address, where the network library is
Win32 Winsock TCP/IP and 1433 is the port being used (the default).
Network Library=dbmssocn;Data Source=000.000.000.000,1433;
SQL Server allows you to use the following network libraries when
establishing a connection.
dbnmpntw
Win32 Named Pipes
dbmssocn
Win32 Winsock TCP/IP
dbmsspxn
Win32 SPX/IPX
dbmsvinn
Win32 Banyan Vines
dbmsrpcn
Win32 Multi-Protocol (Windows RPC)
for copy paste examples see
http://www.connectionstrings.com/
regards
Michel Posseth [MCP]