I have two sqlite windows clients concurrently using a sqlite 3 base on the network. When one appends data the record is successfully appended (there's no the journal file at the moment). But another client doesn't see this record even when a fresh SELECT query is fired and starts to see this record of this table after some SELECT queries from another table.
So the question is: is there the "official" way to reset internal buffers of sqlite completely to refresh whole data? Disconnecting from the DB would be a best bet, but maybe there's a way to do this without full disconnection?