Internal Website Search

181-190 of 200 resultsRefresh

Query in JPA2 with LEFT JOIN on INNER JOIN

(); Predicate predicateOnPath = cb.equal(root.get(Action_.path).get(Path_.id), idPAth ... =actionprof9_.ID_ACTION where 1=1 and action0_.ID_PATH=14 ... , ap9.id_profile from action a inner join path p on p.id = a.id_path and p.id= 4 left join

lockfiles in client/server mode

> <temp path="$objectdb/work" threshold="64mb" /> /usr/local ... > Changing the temporary directory path on the client side should solve the problem, so maybe ... (see rules for the configuration path on this manual page).

Configuration and Activation Code in ObjectDB 2.x

of the configuration file is discussed in the Configuration Path section on path through System.setProperty ... , what should be the path that i should give. And my objectdb.conf file contais the following entry

Problem with Criteria Querys

>) in the type CriteriaBuilder is not applicable for the arguments (Path<Object> ... Number>) in the type CriteriaBuilder is not applicable for the arguments (Path<Object> ... ;Path<Double> lon = d.get("lon");     q.where(     

LEFT JOIN FETCH over empty embedded collection returns no results

First of all, thank you for promptly implementing JOIN FETCH over nested paths in ... > The problem may be with the expression c.bList.val. Path expressions are considered as INNER JOIN by JPA, although apparently it makes sense to consider path expressions in

Does ObjectDB support lazy loading?

{ public static void main(String[] args)   { String path = "test.odb"; EntityManagerFactory emf = Persistence.createEntityManagerFactory(path ... -java">public static void main(String[] args)  {     String path = "test.odb

EM.find() is suddenly slower

added both profiling results and an image for the start path where you can find the hotspot in ... ="/get-file/1030ecc1-1e64-4890-8efe-c50888d4a1f0/start_path.png" title="Download start_path.png">start_path.png (104 KB) above. btc_es BTC EmbeddedSystems

Help with JPA2 Criteria and conditional operator grouping

.parameter(String.class);   Path<String> namePath = root.get("companyId");   Path<Boolean> conditionOnePath = root.get("conditionOne");   Path<Boolean> conditionTwoPath = root.get("conditionTwo");   Path<Boolean> conditionThreePath = root.get("conditionThree

PersistenceException UserException: Failed to validate persistence.xml

> What is the "!" character at the beginning of the path, is it part of your path? Could you try moving your project to a path with no special characters? I don't know if it would solve the exception but it is worth trying. support Support Thank you. But path acts right way. Finally I've got it. I

Alias not used in ORDER BY

"> final Root<T> from = criteria.from(T.class) final Path<?> path = from.get("someStringProperty") final Expression<String> upperPath = builder.upper((Expression<String>) path); upperPath.alias("TEST"); criteria.multiselect(from, path); criteria.orderBy(builder.asc(upperPath