I just want to know the right sql connection string for a remote sql server express edition.
This is what I got but I got some problems
SqlConnectio
Solution : if you are providing remote machine IP address then you don't need to provide hostname
IP address
hostname
Try This:
SqlConnection cs = new SqlConnection(@"Data Source=(IP Address)\SQLEXPRESS,1433;Network Library=DBMSSOCN;Initial Catalog=dbase;User ID=sa;Password=password");