Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以?
我试过谷歌,但我一定是搜索错误的关键词而没有得到答案。
我有一个小型应用程序,仅由 2-3 个人使用,我想将数据存储在数据库中。我无法安装任何 SQL 服务器,因此我认为访问将是最佳选择。
将使用它的计算机也没有安装 Access。
我正在使用 VS2012 Express .net4.0
基本上,您需要的只是指向具有正确提供者的访问数据库的连接字符串。这可能对您有用,只需将数据库位置更改为 2-3 台计算机可以访问的共享位置:
var connection = new System.Data.OleDb.OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\BC207\test.accdb")