简体   繁体   English

哪些C#数据库支持共享网络上的多重连接?

[英]What C# database support multi connections over shared network?

I want to build a simple database program in C# to add,update and remove information. 我想用C#构建一个简单的数据库程序来添加,更新和删除信息。 The program should be on shared network between 3-5 computers and each could add his information in the same time. 该程序应位于3-5台计算机之间的共享网络上,并且每台计算机可以同时添加其信息。

I searched and found that SQLite isn't good for that, and don't know what will be. 我搜索发现SQLite不适用于此,也不知道会是什么样。

I'm looking for some simple database, not something that I should install in each PC to support it. 我正在寻找一些简单的数据库,而不是我应该在每台PC上安装的数据库来支持它。

There isn't an access to the internet, its blocked except a few websites so its not possible to use MSSQL or mySQL. 无法访问Internet,除了少数网站外,Internet被阻止,因此无法使用MSSQL或mySQL。

Thank you. 谢谢。

The fact that the users don't have access to the internet doesn't mean that you can't use MySQL or MS SQL Server. 用户无法访问互联网这一事实并不意味着您不能使用MySQL或MS SQL Server。 You can install MySQL on one of the computers (the one that will play the server role) and have all the other computers connect to the MySQL instance installed on the local server since you say that they will be on an internal network. 您可以在其中一台计算机(将扮演服务器角色的一台计算机)上安装MySQL,并使所有其他计算机都连接到本地服务器上安装的MySQL实例,因为您说它们将在内部网络上。

As far as Databases go, there are plenty you can use: MySQL, SQL Server, PostgreSQL, etc... Just don't use MsAccess. 就数据库而言,您可以使用很多功能:MySQL,SQL Server,PostgreSQL等...只是不要使用MsAccess。 ;) ;)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM