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.
这会是一个问题吗?
当用户买卖或添加商品时,数据库每秒都会发生变化。
我有一个 vb.net 应用程序,它不会将数据写入数据库,但它只会在每次更改时读取数据。因此,一个数据库每小时更改数千次,vb.net 应用程序实时绘制和列出该数据。
如果这不起作用,我有什么选择?
你没有说你正在使用什么数据库,但是一些数据库(例如 SQL Server)在读取表时会锁定表,所以如果数据库一直在更新,你可能想要进行脏读。