12
I Use This!
Activity Not Available

News

Analyzed 8 months ago. based on code collected about 4 years ago.
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 ... [More] features:-) So, let’s go down to the business. First of all, jpox’s libs can not be deployed as bundles in felix. At all. Felix uses “bundle://” ... [Less]
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" ... [More] , dependent = "true") private ActorEntry owner; }[/code] Which has the following ORM metadata: [code] ... [Less]
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: ... [More] [code]tx.begin(); pm.makePersistent(jdoInstance); tx.commit(); // Check that the object is now detached if (!JDOHelper.isDetached(jdoInstance)) { ... [Less]
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 ... [More] will I need to switch to client server mode to support multiple threads ? [code]Caused by: com.db4o.ext.DatabaseFileLockedException: ... [Less]
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 ... [More] Integer id; private String status; private List collection; // getters and setters omitted for brevity } /** ... [Less]
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 ... [More] Telephone.class object now it will be store in a Telephone Table. But I want to store it in a table named something like {userID}_Telephone (User own's ... [Less]
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 ... [More] getting: [05-07 12:19:40] WARN Plugin [connector.VM.0.dispatcher.1]: Bundle "org.jpox" has an optional dependency to ... [Less]
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 ... [More] but had the following tasks completed: [list] [*] Maven2 builds fixed for base platform: MANIFEST wasn't being included on all projects and some ... [Less]
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 ... [More] FireFox - just to ensure I've got two completely different sessions with different cookies etc.,) then changes made in one session often don't get seen ... [Less]