Access 2007 - INSERT and instant SELECT doesn't retrieve the inserted data

半城伤御伤魂 提交于 2020-01-09 05:39:05

问题


I'm inserting a few rows in a table via OleDB, and select instantly the inserted row.

I can't retrieve the row in this way, i have to wait for approx. 3-5 seconds. And then the inserted row appears in the table.

I observed this behavior in the database itself, i inserted the row via OleDB and watched the opened table in Access. The row appeared 3-5 seconds later in the table.

Does Access buffer rows? Do i have to send a flush or commit, etc. via OleDB ?

Any suggestions would be very helpful.

(Please don't ask why I don't solve this through my business logic or other ways....)


回答1:


I did some testing and there does seem to be some buffering going on with ACE OleDb. I found that

  1. If I did some INSERTs and then immediately did a SELECT on the same OleDbConnection the new rows were available right away.

  2. If I opened two OleDbConnection objects, INSERTed on con1, and then immediately SELECTed on con2 the new rows took approximately 5 seconds to become available on the con2 connection.

  3. If I opened two OleDbConnection objects, INSERTed on con1, did con1.Close(), and then immediately SELECTed on con2 the new rows were available right away.

So, it appears that closing the OleDbConnection has the effect of "flushing" the writes and making them available to other connections sooner. My guess is that OleDb is implicitly buffering (or "batching") updates because ACE/Jet is a shared-file database and it is trying to reduce the contention on the database file.

(When I did the same test using SQL Server there was no significant difference between the case when I closed con1 and the case when I left it open. In every case the new records were available instantly.)



来源:https://stackoverflow.com/questions/17048114/access-2007-insert-and-instant-select-doesnt-retrieve-the-inserted-data

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!