Posted
almost 17 years
ago
From a previous post some time back I believe that JPOX uses the no argument constructor when instantiating objects from the database.
This infers that any initialization code in the no arg constructor is executed whenever an object is
|
Posted
almost 17 years
ago
Hello all,
Trying to do some development on my laptop this weekend and I'm running into the following exception when running my application:
[code]java.lang.VerifyError: class sp.feature.photogallery.sprockets.RandomPhotoSprocketModel overrides
|
Posted
almost 17 years
ago
Hello everybody
I've tried to build the sample.jdo.tutorial using maven1.1.
I got the following output:
[color=blue]C:\JPOX\samples.jdo.tutorial>maven jar
__ __
| \/ |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \ ~ intelligent projects ~
|
Posted
almost 17 years
ago
Hello!
I'm new to JPOX and when trying to make simple web app, i faced with the following problem:
[color=red][code]15:07:29,682 ERROR [STDERR] Class com.ibm.ejs.jts.jta.JTSXA was not found in the CLASSPATH. Please check your specification and your
|
Posted
almost 17 years
ago
I'm having problems trying to understand the purpose of persistence.xml? Is it a JPA initiated concept?
In JDO/JPOX up till recently we never had to provide a list of the persistent class files - JPOX just worked it out based on the presence of
|
Posted
almost 17 years
ago
Hello,
Using latest version of jpox 1.2.2 I'm trying to map a JTS Point according to spatial doc:
import com.vividsolutions.jts.geom.Point;
[...]
private Point latLongPoint;
I created a MySQL POINT column:
...
|
Posted
almost 17 years
ago
I am relatively new to using JPOX and am excited about using it for a new application I am developing. I have a few concerns about using multiple (concurrent) clients off of a common repository that I don’t see addressed in the documents.
In my
|
Posted
almost 17 years
ago
[code]
class BusinessObject {
private Dad object;
}
class Dad {
}
class Son1 extends Dad {
private int x;
}
class Son2 extends Dad {
private int y;
}[/code]
I have a class with a object Dad and I need retrieve the x
|
Posted
almost 17 years
ago
Hi there,
is there any need in org.datanucleus.store.rdbms.query.SQLQery.class
to check if sql-statement starts with SELECT with following code (at line 139):
[code]if (!firstToken.equals("SELECT") && !firstToken.startsWith("select"))
{
|
Posted
almost 17 years
ago
Hello *,
I've tried to build DataNucleus by following:
http://www.datanucleus.org/development/building_eclipse.html
and
http://www.datanucleus.org/development/building_maven1.html
Getting it into Eclipse (using Subclipse) worked fine. But
|