SQL database online only for LOCAL NETWORK, connect via C #

3

I developed a system for my company and need a database hosted on our internal network, explaining better I want to host this database on a PC running a Windows Server 2012 here in the company, our connection is all wired .. .

It's a network only, everything LOCAL. This system was developed in Visual C # (C # dot.NET), I want to connect my system to this database hosted on the company's local network.

I tried it in a way: there are shared folders on our network, so I tried to access the database directly only with the (SQL SERVER connection via file) path so he returned an error saying that it is necessary set up an environment for this type of connection.

    
asked by anonymous 09.12.2014 / 18:38

1 answer

2

There are basically two alternatives to what you want:

The best is the second. Accessing by file runs the risk of creating collisions if the application has more than one concurrent user accessing the system.

    
09.12.2014 / 19:52