I am developing an application with winforms which I need to connect to a remote server to share the data in an intranet to different machines.
The point is that I only want to install the SQL Server on the server and that the other PCs connect to it.
It is possible and if so what would be the format of the connection string since my current format is this
public ManejadorDatos()
{
string usuario = ConfigurationManager.AppSettings["usuario"];
string password = ConfigurationManager.AppSettings["clave"];
string servidor = ConfigurationManager.AppSettings["servidor"];
string dataBase = ConfigurationManager.AppSettings["dataBase"];
Coneccion = new SqlConnection("user id=" + usuario +
";password=" + password +
";server=" + servidor +
";Trusted_Connection=yes;" +
"database=" + dataBase +
";connection timeout=15");
}