Hi,
I am trying to upgrade the objectdb from 1.x to 2.x. I installed and configured as per object db tuotrial. I am just wondering, in objectdb 1.x, when i am tring to get the object id for a persistable object, i am getting an integer as a result
e.g
Object obj = JDOHelper.getObjectId(logTestRunImpl) used to return suppose 1
obj.toString() = 1
but the same code when i am trying to execute for the same object in object db 2.x, i am getting
Object obj = JDOHelper.getObjectId(logTestRunImpl)
obj.toString() = 3:1 , which is not an integer and this object has two feild object id and type id.
Can you please let me know if there is any change in the JDOHelper.getObjectId method from object db 1.x to 2.x. And how can i just get the object id without type id.
Thanks,
Binit