I'm making a program with c# , and after finishing it I'll setup the program in more than one pc , I want to connect the program in all PCs to one database in another pc using sql server . how can I do it ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Configure the connection string in your program to point at the database server. An example from http://www.connectionstrings.com:
|
|||||
|
|
One example would be setting up an MySQL-Database at on of you PCs. You can get it from the MySQL Website. After that you need to connect to it in any way. To connect to that database you may use the .NET Connector. Using it you can access a remote databasein a fashion like this:
In a similiar way you may |
|||
|