Data Source=myServerAddress;Initial Catalog=myDataBase;User Id=myUsername;Password=myPassword;
Data Source=myServerAddress;Initial Catalog=myDataBase;Integrated Security=SSPI;
Data Source=190.190.200.100,1433;Network Library=DBMSSOCN;Initial Catalog=myDataBase;User ID=myUsername;Password=myPassword;
DBMSSOCN=TCP/IP. This is how to use TCP/IP instead of Named Pipes. At the end of the Data Source is the port to use. 1433 is the default port for SQL Server.
Data Source=TORCL;User Id=myUsername;Password=myPassword;
Data Source=TORCL;Integrated Security=SSPI;
Data Source=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP) (HOST=MyHost)(PORT=MyPort))) (CONNECT_DATA=(SERVER=DEDICATED) (SERVICE_NAME=MyOracleSID)));User Id=myUsername;Password=myPassword;
For more connection strings, visit www.connectionstrings.com.