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.
I did some testing and there does seem to be some buffering going on with ACE OleDb. I found that
If I did some INSERTs and then immediately did a SELECT on the same OleDbConnection the new rows were available right away.
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.
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.)