Posted
almost 17 years
ago
Hello all,
I'm having a problem using java.sql.Timestamp as a field type in a PC of mine. I'm running v1.2.0. Here's the relevant parts of the class:
[code]@PersistenceCapable(identityType = IdentityType.APPLICATION,
objectIdClass =
|
Posted
almost 17 years
ago
I'm trying to persist an enum using it's ordinal
I have an enum defined as:
public enum Gender {
Male,
Female
}
The class I'm trying to map is
@PersistenceCapable(detachable="true")
public class Person{
|
Posted
almost 17 years
ago
Hello,
when I use [b]list.remove(element)[/b] with an element that isn't contained in the list the return value is true and after a tx.commit() a JDOException is thrown.
Why is the return value true and not false?
Note: It is the same question
|
Posted
almost 17 years
ago
Hello,
First of all, congratulations on the JPOX 1.2.0 release!!!! It's a very impressive release.
I was researching persistence mechanisms the other day and came across an article in an IEEE trade magazine that compared JPOX, Hibernate, and
|
Posted
almost 17 years
ago
Hello jpox forum!
I've got some questions regarding the use of JDO/JPOX in web applications - what are the best practices you discovered in your projects, what are the usage patterns that evolved?
Preconditions for our discussion:
- the view is
|
Posted
almost 17 years
ago
Hi!
I have written an application with a single persistence manager per application using optimistic locking. I notice the following behavior with two running instance of the application:
1.) app1 queries the DB and loads the objects
2.) app2
|
Posted
almost 17 years
ago
I've just upgraded to 1.2 final and I now get compile errors:
[javac] C:\dev\blah\.... MyClass.java:377: package org.jpox.identity does not exist
[javac] org.jpox.identity.OID oid = new org.jpox.identity.OIDImpl(oidString);
but the
|
Posted
almost 17 years
ago
I'm trying to generate a schema using ant & SchemaTool but I'm getting the error:
[b]SEVERE: [JPOX-044080] Class com.imilia.jdo.DomainEntity has MetaData yet the class cant be found. Please check your CLASSPATH specifications.[/b]
I can
|
Posted
almost 17 years
ago
Hello,
While profiling my application looking for a possible memory leak I found something interesting.
The application is based on JPOX for the persistence layer and Apache Wicket for the view layer. I tried running our selenium test suite
|
Posted
almost 17 years
ago
[img]http://www.jpox.org/images/fireworks2.gif[/img]
After 22 months of refactoring and feature enhancement JPOX 1.2.0 is out, a fully compliant implementation of the JDO1, JDO2, JDO2.1 and JPA1 specifications - the most standards complaint open
|