We have a Java desktop application that accesses a Derby database located on a network shared drive, rather than locally.
While multiple instances of the application share a database, only one instance has a live connection.
This has been working pretty well for more than two years, but sometimes we encounter database corruption that we cannot determine is the result of a software error or because of a network between the application and the remote database.
We understand that Derby docs indicate that embedded databases should only be used for local persistence, but can anyone suggest some specific errors we might encounter in this configuration?
Thanks in advance!
Jim
source
share