Posted
over 17 years
ago
Hi,
as I'm new to JDO this questions should not be to hard for you:
[code]
cs = (ObjectX)pm.attach(cs);
pm.deletePersistent(cs)
[/code]
1) Does this make sense in any case?
2) Must I reregister an detached Object to the persitence
|
Posted
over 17 years
ago
Hi!
The ant task used to working in 1.2beta5,now failed on nightly build 20070117 saying No datastore driver class has been specified. Following is the ant task and exception:
Environment is Postgresql 8.2.5 (Using H2 throws the same exception),Java 1.6.0 and jpox nightly build 20070117
[code]
|
Posted
over 17 years
ago
I have a web app with a background thread that makes changes to objects. The web app itself does not make direct changes to the objects directly but queues 'request messages' that are processed by the background thread which then makes the changes on
|
Posted
over 17 years
ago
Hi! There,
I was trying to obtain a sample JSF using JPOX for a Web App.
My goals are to use JSF as my presentation layer and JPOX to persist against DB40. Anybody has some solid samples that I can build on instad of incomplete suggestion or
|
Posted
over 17 years
ago
http://www.jpox.org/docs/1_2/cache.html
Has three types of Level 1 Cache:
# org.jpox.cache.WeakRefCache -
# org.jpox.cache.SoftRefCache -
# org.jpox.cache.HardRefCache -
If you try one of these you will get a Class Loader Exception.
|
Posted
over 17 years
ago
I am having a problem retrieving information from a set of database tables that have a simple 1 to Many relationship.
I am using JPOX 1.1.
Some background:
I have 2 database tables, Member, and ClaimLine, and 2 corresponding classes, with the
|
Posted
over 17 years
ago
Using JPOX 1.1.9 with Oracle 8i, JPOX is using INNER JOINS when creating classes with collections. Consider the following:
[code]public class Foo
{
private long id;
private List bars;
public long getId() { return id; }
public
|
Posted
over 17 years
ago
I have an application that uses JPOX and am now having to customize the way JPOX gets its database connections.
As a corporate guideline I am being "forced" to follow, I cannot have database user ids and passwords anywhere in my code and am
|
Posted
over 17 years
ago
Hi, I'm working on a project or i'm expectling large result, probably around 25000 rows.
I've been reading throw the site, reading documentation and looking for examples, and i found a reference to Result Set Control on
|
Posted
over 17 years
ago
Hello,
First off, sorry for the lengthy post. Getting the following error:[code][2008-01-11 11:42:18,354]DEBUG400718[main] - org.jpox.util.Log4JLogger.debug(Log4JLogger.java:60) -
INSERT INTO CHILD ("NAME",PARENT_GRANDPARENT_NAME_OID_OID,PARENT_NAME_OID) VALUES (<'child1'>,,)
[2008-01-11 11:42:18,356] WARN400720[main] - ...
|