Re: How to determine version of a derby database

2021-02-18 Thread Bryan Pendleton
Great! Thanks for the follow-up and the example code, very helpful. On Thu, Feb 18, 2021 at 1:01 PM Lisa Ruby wrote: > > Thank you again Bryan. I just got it working. From what I read about the > versioning, it would seem that being able to obtain only the major and minor > versions returned

Re: How to determine version of a derby database

2021-02-18 Thread Lisa Ruby
Thank you again Bryan. I just got it working. From what I read about the versioning, it would seem that being able to obtain only the major and minor versions returned from SYSCS_UTIL.SYSCS_GET_DATABASE_PROPERTY('DataDictionaryVersion') should be enough to know if a database upgrade is needed.

Re: How to determine version of a derby database

2021-02-18 Thread Lisa Ruby
I had not seen this Bryan. Thank you for pointing it out. Seems like it would provide the information I'm looking for. I'll look into it. Lisa On 2/18/2021 6:48 AM, Bryan Pendleton wrote: > Have you tried this? > https://db.apache.org/derby/docs/10.15/ref/rrefproperdatadictversion.html > >

Re: How to determine version of a derby database

2021-02-18 Thread Bryan Pendleton
Have you tried this? https://db.apache.org/derby/docs/10.15/ref/rrefproperdatadictversion.html thanks, bryan On Wed, Feb 17, 2021 at 4:23 PM Lisa Ruby wrote: > > Probably should have mentioned that I'm using derby version 10.15.2.0 > and AdoptOpenJDK Java 11.0.9.11-hotspot > > Lisa > > On

Re: How to determine version of a derby database

2021-02-17 Thread Lisa Ruby
Probably should have mentioned that I'm using derby version 10.15.2.0 and AdoptOpenJDK Java 11.0.9.11-hotspot Lisa On 2/17/2021 4:08 PM, Lisa Ruby wrote: > Hi, > > I am using derby in the embedded mode for a Java Windows desktop > application. I am trying to find a way that I can determine what