 2 | Explorer", which is different. I can create the points datasource, and when I create a data set and enter: "SELECT p.x AS x, p.y AS y FROM Point p WHERE p.x BETWEEN :low AND :high" I get the error "Type Point is not found". I checked that the points.odb file does have many objects of type point |
 2 | abandon eclipse and use the maven command line to deploy this Spring MVC web app to jetty and point ... under the that server icon in the server. But when I point the browser to localhost:8080/Guestbook after starting ... for the tomcat 6 server in eclipse so they point to the directory where you installed or unzipped tomcat 6 |
 2 | a client pointed at the 6136 server (expecting it to fail with a connection error) it failed ... ://localhost:6136/TestReplication.odb;user=admin;password=admin" />
My test saves Point ... of Points using a connection to the slave database. Should this work? I've tried the slave query |
 2 | to build the points example from Maven, but on opening it in Netbeans 6.9.1 I got an error in Points.java ... is different from that I ran Netbeans to load the built points project, but I can't see that this could explain the error) I could not figure out how to fix this in the points project in Netbeans, I did |
 2 | SELECT:
TypedQuery<Point> query = em.createQuery(
"SELECT p FROM Point p WHERE p.id = " + element.getId(), Point.class);
List<Point> points = query.getResultList(); WRITE:
em.persist(p); ** the Point class is of the tutorial. I found the above select method is ten times slower |
 2 | .createEntityManagerFactory("$objectdb/db/points.odb");
EntityManager em = emf.createEntityManager ... invalid from your point of view? Thanks and regards Benjamin Klink JPQL restricts ORDER BY expressions ... project but pointing from there to the (client-server-based) database that is used by the "real |
 1 | /points.odb", properties);
//exception!
} But everytime it fires this exception:
javax.persistence.PersistenceException: Explicit persistence provider error(s) occurred for "$objectdb/db/points ... provider error(s) occurred for "$objectdb/db/points.odb" after trying the following discovered |
 1 | I modified the example code to include an index on the Point class like so: @Index(members={"x","y"}) Then when I run the following query: TypedQuery<Point> query = em.createQuery("SELECT p FROM Point p where p.x <= :x and p.y >= :y", Point.class); I get the exception at the end. I |
 1 | I am having trouble setting up the birt points.odb sample with a client/server connection. I can connect to points.odb with the explorer. I added a "Data Source" that works fine with local file ... : connection URL: objectdb://localhost:6136/points.odb;user=admin;password=admin using objectdb |
 1 | .createEntityManagerFactory("$objectdb/db/points.odb");
EntityManager em = emf.createEntityManager();
// Store 1000 Point objects in the database:
em.getTransaction().begin();
for (int i = 0; i < 1000; i++) {
Point p = new Point(i, i);
em |