Click here to Skip to main content
15,895,084 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have created one registration page in one system and i want to share the same in different machines VIA LAN only and want to share the same data base in the same machines.

What I have tried:

I am new to this concept to i did not tried but watched some tutorial but i unable to execute.
Posted

1 solution

If you want to share a database, you really need to use a database management system, like SQL Server or MySql - Access, SQLite, or SQLCE are not good at multi-user working.
That means that you need to install a version of SQL Server on a PC that is "visible" to all the other PC's on the LAN, and make your software access the DB via that.

That's not complicated, but it is far too much to explain in a little text box like this!
Start here: http://www.dotnetperls.com/sqlclient[^] - it does a fair job of getting you started.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900