Posted
almost 17 years
ago
Hello!
It seems that DB2 does not like the LOWER SQL function. The LCASE function should be used instead.
I'm not a DB2 guru so I don't have a explanation to this. For example the query filter [code]t.toLowerCase().endsWith("mytext")[/code]
|
Posted
almost 17 years
ago
Are there any changes regarding sequences in the nightly build?
I have tried to use the build from today (with Oracle 11g).
I get the following exception when persisting a new object:[code]Caused by: javax.jdo.JDOException: Couldnt create the
|
Posted
almost 17 years
ago
Hello,
the following exception occurs in jpox version 1.2.1 when using level 2 cache in optimistic mode:
Object with id "91[OID]org.jpox.test.A" in table A has no version set on the object in memory and you want to update it!! Please report
|
Posted
almost 17 years
ago
Hello,
after calling tx.setOptimistic(true), I am allowed to change a persisted object
without getting an exception, although nontransactionalWrite is set to false.
A simple testcase is attached.
There is a simple class of objects which are
|
Posted
almost 17 years
ago
Version 1.1.3 of the JPOX Eclipse plugin is released. You need Eclipse 3.2 to use this plugin, and can be used with either JPOX 1.1 or JPOX 1.2.
It changes the following[list]
[*]Fix bug in file suffices for Enhancer/SchemaTool in 1.1.2
|
Posted
almost 17 years
ago
Hi,
I had a problem with my connection pool (c3p0) when a managed connection breaks. I would like to have the connection pool using another connection instead. I achieved that by modifying the method getConnection in the class
|
Posted
almost 17 years
ago
Hi!
I want to do a commit without closing the transaction. (a commit retain).
Does JPOX support this?
or if not:
Does JPOX support reattachOnNewTransaction (the opposite of detachOnCommit)
So when I commit my transaction, all my managed
|
Posted
almost 17 years
ago
Hi
I have a class named "UsuarioApp" which maps to an existing table from an Oracle 8 database schema
The class is as follows:
[code]public class UsuarioApp
{
private String cedulaRif; // <- Primary Key
private String nombre;
|
Posted
almost 17 years
ago
Hi everyone,
For the mapping case of List extends someClass>, it is clear to see that this mapping is a combination of class association (One-to-Many) and inheritance.
I can handle this mapping, database schema can be generated, storing and
|
Posted
almost 17 years
ago
Hello all,
I have just started to use JPOX and stumbled upon generics with JPOX
I am using JPOX 1.2, BCEL enhancer and jdk1.6
say, I have defined a class :
public class MyClass
@Persistent
private T someValue;
After Enhancing and
|