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 the database, only one instance ever has a live connection.
This has been working quite well for over two years now but on occasion we encounter database corruption, which we are unable to determine is a result of a software bug or due to the network between the application and the remote database.
We realize the Derby docs state that embedded databases should be used for local persistence only, but can anyone suggest some specific pitfalls we could expect to encounter through this configuration?
Thanks in advance!
Jim