Posted
almost 17 years
ago
We are running JPOX v 1.2.2 in OSGi container, Felix in our case.
We’ve had a LOT of troubles, I was even wondering, has anybody run it in OSGi framework at all :-) But later I recognized, it was tested in Equnox, but now I know, Felix has it’s own
|
Posted
almost 17 years
ago
Evening,
Trying to delete an instance of the following class:
[code]@PersistenceCapable(identityType = IdentityType.APPLICATION, detachable = "true")
public class DynamicPageRoot
{
@Persistent(primaryKey = "true", defaultFetchGroup = "true"
|
Posted
almost 17 years
ago
Howdy all,
This one has had me stumped for a few weeks now. I just created a test case that illustrates it and opened a ticket: http://www.jpox.org/servlet/jira/browse/NUCCORE-11
Here's the relevant snippet from the testcase:
|
Posted
almost 17 years
ago
I have a db4o file that I am only performing queries against and I am getting this Exception when file is accessed in different threads.
Can I use javax.jdo.option.ConnectionURL=db4o:file:/tmp/my_db4o_file in readonly mode with multiple threads or
|
Posted
almost 17 years
ago
I just tried migrating from a working rdbms to db4o using jpox 1.2.2.
First I tried using db4o-7.2.39.10644-java1.1.jar but I got an exception.
org.jpox.exceptions.JPOXUserException: Object "com.acme.Product@46b90a" being inserted has id "2" yet an object with this id already exists in the datastore!
at ...
|
Posted
almost 17 years
ago
Hello, I have a problem when I remove an element from a list that has
a 1-1 relationship with another class, there are three classes involved:
/**
This is the root class
Has identity-type="application"
*/
public class A1
{
private
|
Posted
almost 17 years
ago
How can I tell JPOX to use {prefix}_JPOX_TABLES instate of JPOX_TABLES????
The problem to solve:
I want each user to have his owns tables where he store his objects. The database must be created in a dynamc way.
For example:
If I have a
|
Posted
almost 17 years
ago
Hello to all,
I am running JPOX over JAXB enhanced classes. My environment is eclipse and ubuntu for Java 1.5.
I tried to figure this out, but I am giving up, It is probably a simple configuration thingy that I missed somewhere.
I am
|
Posted
almost 17 years
ago
jfrantzius,
I'd been planning on working on this for a while and finally had time this week. However, it seems you're ahead of me on it (just noticed all of your commits regarding this).
I'm attaching my changes as a patch file. I wasn't done
|
Posted
almost 17 years
ago
I have an app where each user session has their own PM that stays alive for their entire session.
The app itself has a standard single PMF and the level 2 cache is associated with that.
If I open two separate sessions (one in IE and one in
|