且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何为网络上的服务器提供连接字符串?

更新时间:2023-11-07 16:15:28

如建议的此处,如果需要同时支持多个用户,则可能需要考虑使用MySQL之类的东西,因为同时访问SQLite时可能会出现潜在的损坏问题.

As suggested here, you may want to consider using something like MySQL if you need to support more than a single user, due to potential corruption issues that can arise when you access SQLite concurrently.

尽管SQLite确实支持并发访问,但是您可以在其常见问题上阅读一些警告. (请参阅第5和第6项).

Though SQLite does support concurrent access, there are several caveats that you can read about on their FAQ (see items 5 and 6).

在该页面上:

在两个之间共享一个SQLite数据库 或更多Windows机器可能导致 意外的问题

sharing an SQLite database between two or more Windows machines might cause unexpected problems