I have 2 apps that access the same SQLite database. If only 1 app is running, there are no problems reading and updating data. If both apps are running, there are no problems reading data, but neither app can update data. Unidac simply reports that the 'database is locked'.
I understand that SQLite would serialize the update requests, so that both updates should succeed. Are there any special settings to enable this?
Thanks in advance.