The documentation indicates that " In client-server mode the ObjectDB server must be restarted after a schema change. " It is unclear whether the client application with the upgraded schema must connect to ObjectDB before the restart or whether ObjectDB can be restarted while the client is down and then have the client with the upgraded schema connect.
That is to say, is it valid to perform the following steps:
- Stop old client application.
- Stop ObjectDB.
- Start ObjectDB.
- Start NEW client application.
Or, is it necessary to do the following:
- Stop old client application.
- Start NEW client application (errors will occur due to "Field xxxx not found in type yyyy")
- Stop ObjectDB
- Start ObjectDB
Thank you!