Posted
almost 17 years
ago
Hello, in my project I have 2 classes with a unidirectional relationship.
Class Model
- String id
- String name
- int width
Class Caravan
- String id
- Model model
So many caravans can be associated to a model.
When i persist new
|
Posted
almost 17 years
ago
Hello Erik,
I just came back from holidays and gave the new JPOX a try. Unfortunately, though, I don't come very far with it:
1) When starting JFire (using JBoss) with the new jpox-jca-1.2.2.rar, I get this exception:
[color=red]06:07:28,712 WARN [ServiceController] Problem starting service ...
|
Posted
almost 17 years
ago
Hi,
how can I use "not contains()" to emulate SQL's "not exists"?
I have this classes:
[code]class B{
int id;
hashset aes;
C c;
}
class A{
int id;
hashset group;
}
class C{
int abc;
}[/code]
I want to obtain all "B.id, B.c.abc" such that B.c is not contained in any A.group.
I try this JDOQL query:
[code]SELECT this.id, ...
|
Posted
almost 17 years
ago
Hello,
I get the error below. Everything was fine in JPOX 1.1.9. I migrated to 1.2.2. My configuration stayed the same except for org.jpox.PersistenceManagerFactoryImpl now being org.jpox.jdo.JDOPersistenceManagerFactory. AutoStart and reading
|
Posted
almost 17 years
ago
hi,
I got a problem with creating foreign key column names in oracle (8i) database, the column names created with the jpox schema tool (in eclipse) differ from the ones the application expects at runtime. The column names created with the jpox
|
Posted
almost 17 years
ago
Hi,
I believe I have found a problem when setting the jdbc-type of date to bigint (a documented feature).
Database is MySQL 5. Java 5. Jpox 1.1.9 (problem confirmed in 1.2.2 also). I have attempted to debug in 1.1.9 source because that is what
|
Posted
almost 17 years
ago
Using http://www.jpox.org/downloads/eclipse-update/
Get
Update operation has failed
Error retrieving "plugins/javax.jdo_2.1.0.jar". [Server returned HTTP response code: "404 Not Found" for URL: http://www.jpox.org/downloads/eclipse-update/plugins/javax.jdo_2.1.0.jar.]
Server returned HTTP response code: "404 Not Found" for URL: ...
|
Posted
almost 17 years
ago
Hi, I've developed an application that let users create their queries using a set operators that are translated to JDOQL filter criteria. The operators are : (for union), * (for intersection) and ^ (for set difference). The problem is when using a
|
Posted
almost 17 years
ago
Hi,
I am switching across to use JDO and currently have this:
[code] String query = "INSERT INTO customer_watch_list (SecurityId, RIC, SEDOL, CUSIP, VALOREN, ISIN, ASSET_ID, RIC_TABLE, Portfolio_Id, Exch_Cd) ";
|
Posted
almost 17 years
ago
JPOX 1.2.2 is released (core, rdbms, db4o, enhancer, and all other plugins). This is a bug fix release. It fixes issues in value generation, plugin registration, and various other things. It also improves support for Informix, and adds on support for many db4o properties. All users are recommended to upgrade to this release.
Please refer to ...
|