|
Re: Java 17 Compatiblity
https://www.datanucleus.org/documentation/products.html
https://www.datanucleus.org/documentation/products.html
|
By
Andy
·
#470
·
Edited
|
|
Java 17 Compatiblity
We use below components from datanucleus, since we have a plan to upgrade to Java 17 need to know the compatibility to run the below components on java 17 runtime environment.
Vendor
Software
We use below components from datanucleus, since we have a plan to upgrade to Java 17 need to know the compatibility to run the below components on java 17 runtime environment.
Vendor
Software
|
By
Shivaraj Sivasankaran
·
#469
·
|
|
Re: Spanner Adapter type conversion/matching problem
Hi,
if you have a class with a field of type "int" then, to find its JavaTypeMapping, DataNucleus will look at the column mappings that the adapter has registered. In your adapters case, it has
Hi,
if you have a class with a field of type "int" then, to find its JavaTypeMapping, DataNucleus will look at the column mappings that the adapter has registered. In your adapters case, it has
|
By
Andy
·
#468
·
Edited
|
|
Spanner Adapter type conversion/matching problem
Hi everyone,
Recently I have created a pull request for Spanner database adapter. While running the Datanucleus tests I have encountered an issue which made me realize that I have not fully understood
Hi everyone,
Recently I have created a pull request for Spanner database adapter. While running the Datanucleus tests I have encountered an issue which made me realize that I have not fully understood
|
By
yunus@...
·
#467
·
|
|
Re: Datanucleus with Informix
Thanks for your information Andy!
Is very important for me.
Thanks for your information Andy!
Is very important for me.
|
By
gustavo.echenique@...
·
#466
·
|
|
Re: Datanucleus with Informix
Hello,
DataNucleus has a datastore adapter for Informix, shown here. This was developed quite a few years ago by someone, who also provided these docs specific to the Informix adapter.
I don't have
Hello,
DataNucleus has a datastore adapter for Informix, shown here. This was developed quite a few years ago by someone, who also provided these docs specific to the Informix adapter.
I don't have
|
By
Andy
·
#465
·
Edited
|
|
Datanucleus with Informix
Dear colleagues:
I am developing a project with Spring Boot and Informix IDS 7.31TD9, but I find that I cannot connect to the database.
I tried to load the dependencies of all the versions of Informix
Dear colleagues:
I am developing a project with Spring Boot and Informix IDS 7.31TD9, but I find that I cannot connect to the database.
I tried to load the dependencies of all the versions of Informix
|
By
gustavo.echenique@...
·
#464
·
|
|
Re: Programmatic retrieval of a persistent class' discriminator
The discriminator is clearly in the retrieval SQL when you query for objects, but is only used to decide which type of class to instantiate.
It would be part of the metadata for the class, so you
The discriminator is clearly in the retrieval SQL when you query for objects, but is only used to decide which type of class to instantiate.
It would be part of the metadata for the class, so you
|
By
Andy
·
#463
·
Edited
|
|
Programmatic retrieval of a persistent class' discriminator
Clearly we can associate a unique (usually integer in our case) class ID / discriminator to each persistent class.
Given that this class ID is always unique across all classes within our system I have
Clearly we can associate a unique (usually integer in our case) class ID / discriminator to each persistent class.
Given that this class ID is always unique across all classes within our system I have
|
By
Page bloom
·
#462
·
Edited
|
|
Re: How to identify fields that are made dirty during an InstanceCallback from within a listener?
The JDO spec (12.15) explicitly insists that InstanceLifecycleListener methods are called BEFORE InstanceCallbacks, so we can't just change the code to calls to the opposite order, hence using
The JDO spec (12.15) explicitly insists that InstanceLifecycleListener methods are called BEFORE InstanceCallbacks, so we can't just change the code to calls to the opposite order, hence using
|
By
Andy
·
#461
·
Edited
|
|
How to identify fields that are made dirty during an InstanceCallback from within a listener?
Hi Andy,
I'm running into a bit of a catch-22 solution here and would love some ideas if you have something.
I'm trying to identify all dirty fields of an object during a StoreLifecycleListener. I
Hi Andy,
I'm running into a bit of a catch-22 solution here and would love some ideas if you have something.
I'm trying to identify all dirty fields of an object during a StoreLifecycleListener. I
|
By
ebenzacar@...
·
#460
·
|
|
Re: Where/how to report updates needed to documentation?
Thanks. PR Created at https://github.com/datanucleus/docs-accessplatform/pull/15
Thanks,
Eric
Thanks. PR Created at https://github.com/datanucleus/docs-accessplatform/pull/15
Thanks,
Eric
|
By
ebenzacar@...
·
#459
·
|
|
Re: Where/how to report updates needed to documentation?
All is in GitHub, of course (link). Extensions docs are in Asciidoc format, under https://github.com/datanucleus/docs-accessplatform/tree/master/src/main/asciidoc/extensions
All is in GitHub, of course (link). Extensions docs are in Asciidoc format, under https://github.com/datanucleus/docs-accessplatform/tree/master/src/main/asciidoc/extensions
|
By
Andy
·
#458
·
Edited
|
|
Where/how to report updates needed to documentation?
Hi,
In reading through the Plugin documentation on the website, I noticed an oversight in the docs. How/where can I report this? I tried to look to see if there was a github repo for the website,
Hi,
In reading through the Plugin documentation on the website, I noticed an oversight in the docs. How/where can I report this? I tried to look to see if there was a github repo for the website,
|
By
ebenzacar@...
·
#457
·
Edited
|
|
Re: Force index usage in mySql
Non-standard SQL of that nature is specific to one RDBMS (i.e MySQL), and not supported. All SQL is in the RDBMS plugin if wanting to add (some level of) support for it. If doing so, try to make
Non-standard SQL of that nature is specific to one RDBMS (i.e MySQL), and not supported. All SQL is in the RDBMS plugin if wanting to add (some level of) support for it. If doing so, try to make
|
By
Andy
·
#456
·
|
|
Force index usage in mySql
Hi,
I am using datanucleus with mySql and I am looking for a way to force an index usage in a query (JDOQL). So the generated SQL should look like "select x from T FORCE INDEX (z) where ...". I have
Hi,
I am using datanucleus with mySql and I am looking for a way to force an index usage in a query (JDOQL). So the generated SQL should look like "select x from T FORCE INDEX (z) where ...". I have
|
By
Christophe
·
#455
·
|
|
Re: StateManager savedImage retains references - not the original values
It knows what to update based on what methods the user calls on the collection/map. Take the example of a field of type Collection, using
It knows what to update based on what methods the user calls on the collection/map. Take the example of a field of type Collection, using
|
By
Andy
·
#454
·
Edited
|
|
Re: StateManager savedImage retains references - not the original values
I found the set of Proxy collections in the `org.datanucleus.store.types.wrappers`. I don't see any state trackers in the SCO proxies that would retain the original values before they are modified.
I found the set of Proxy collections in the `org.datanucleus.store.types.wrappers`. I don't see any state trackers in the SCO proxies that would retain the original values before they are modified.
|
By
ebenzacar@...
·
#453
·
|
|
Re: StateManager savedImage retains references - not the original values
1. Talk to developers of TJDO, they wrote basic StateManager handling before DataNucleus existed.
2. If it kept a deep copy then you'd get an object graph stored alongside each object. A StateManager
1. Talk to developers of TJDO, they wrote basic StateManager handling before DataNucleus existed.
2. If it kept a deep copy then you'd get an object graph stored alongside each object. A StateManager
|
By
Andy
·
#452
·
Edited
|
|
StateManager savedImage retains references - not the original values
Hi,
I've been trying to work with the StateManager and its savedImage object which I had expected to be a representation of the current object at the time that "saveFields()" is called.
Hi,
I've been trying to work with the StateManager and its savedImage object which I had expected to be a representation of the current object at the time that "saveFields()" is called.
|
By
ebenzacar@...
·
#451
·
Edited
|