Internal Website Search
101-150 of 200 resultsClassCastException on SELECT NEW ... after UPDATE over Java RMI internally runs SELECT NEW ... queries. For example: SELECT NEW com.arunta.base.db.FileNameDTO(r.id, r.fileName) FROM RecordingMetaData AS r WHERE ... A remote RMI client runs SELECT (but not SELECT ... is that once we UPDATE a record from the client (via the RMI interface), all SELECT NEW ... queries | |
Problem with distinct select, order by and equivalent alias/attribute path; String q1 = " select distinct s_location "   ... ; q1 = " select distinct s.location "   ... ; String q2 = " select distinct s.location "   | |
Multi selection and distinct in a criteria query hi, How can I realize multi selection with the criteria api concerning distinct? I.e. doing something like SELECT DISTINCT $1, $2 wouldn't work because I do only have something like criteria.multiselect(...) and nothing like builder.distinct( selection ) so that I could do something like criteria | |
Is there any faster select method? SELECT : TypedQuery query = em.createQuery( " SELECT p FROM Point p WHERE p ... ); ** the Point class is of the tutorial. I found the above select method is ten times slower ... . Is there any faster method of select ? TIA pikotenta pikotenta Entity objects can be retrieved by | |
selecting objects that have a particular key/value in persistant HashMap create a JPA query that selects such objects? Something like the following (but clearly does not work) : SELECT p FROM Person p where p.pMap['location']='California' Any thoughts? Thanks, -Adam adamMc Adam Please try the following query: SELECT p FROM Person p WHERE p.pMap | |
Wrong select results Hello, I got a realy strange SELECT problem. In explorer query " select p from Player p where p.confirmed==false", given me some results with p.confirmed==TRUE. And when I try to do (see image) " select p, p.confirmed from Player p where p.confirmed==false", I getting p-confirmed-true | |
Selecting random rows Hello is there way to get random rows? Functions like rand(), random(), newid() doesn't work ;/ for example: em.createQuery(" SELECT s FROM StawkaVat s ORDER BY rand()").setMaxResults(5).getResultList(); gives exception: Exception in thread "AWT-EventQueue-0" [ObjectDB 2.5.6_02] SELECT s FROM StawkaVat s == rand | |
Conditional Selection so when I use... SELECT firstName + " " + middleName + " " + lastName FROM Employee   ... an additional field. e.g. displayName . Use a method in the SELECT clause. It could be a static method | |
Embedded Entity in EmbeddedId not persisted. Error 631 at select.; issue: In case 1 transaction is committed, but select fails! * *   ... (em.createQuery(" select a from A a", A.class).getResultList()); }   | |
Performance in SELECT statement) Example query looks like : String strSelect = " SELECT e FROM TestEntity WHERE e.state.entityState IN | |
Unexpected query token 'delete' (SELECT is expected) (error 752) simple codes(see attachment), failed. gzdillon Lai Yang DELETE queries should not be run with getSingleResult ( which is for SELECT queries). Use executeUpdate instead. See this manual page . support Support | |
A nested SELECT Hello. I have a query UPDATE Look l SET l.partlySold = FALSE WHERE ( SELECT count(a) FROM l.things a WHERE a.thing.status != :status) | |
select query for a HashMap field of an entity.select query for a HashMap field of an entity. | |
Class fields selection to storeClass fields selection to store | |
selective update does not workselective update does not work | |
Selective merge/cascade of detatched entitySelective merge/cascade of detatched entity | |
Entity Management Settings, supported only on selected JVMs. The reflection attribute specifies how non enhanced classes | |
Posting Sample Code(" SELECT e FROM MyEntity e"); List resultList = query | |
ObjectDB Object Database Features, max) - for paging. Query Structure SELECT (including NEW ). FROM (including INNER JOIN , LEFT OUTER | |
Chapter 4 - JPA Queries (JPQL / Criteria) (and a criteria query) is explained by describing the main clauses of JPQL queries ( SELECT , FROM, WHERE, GROUP | |
JPA Primary Key to evaluate the different alternatives in order to select the best solution. | |
SSL Configuration the middle attack"). The server, on the other hand, might be less selective and allow connections | |
Issue with DISTINCT Select It is getting more and more frustrating :( We've introduced distinct select instead of regular selection in our code (no changes else) and suddenly receive invalid identifiers in queries exceptions ... ) multiple times for different selections in the same query!! so after debugging the query returns | |
Using SELECT BETWEEN with LocalDate I am trying to query all entities whose date is between today and today + X days. The date inside the entity is a LocalDate . To do so I created the following query: .createQuery( " SELECT e FROM ... the SELECT a Date is used and not a LocalDate , so I ignored this error. Now I tried a LocalDate | |
Deletion of an entry via the table window always deletes the last entry not the selected one If I open a class in the explorer via the "Open Table Window" button, select a row by its index and prex "Del" or use right click "Delete" the last entry of the table is removed and not the selected one. If I try the same using the "Open Tree Window" it works as expected. Kevin Kevin Pfaff Thank | |
NullpointerException at a normal select When I run the following code: EntityManager em = getEm(); Customer result = null; try { logger.debug("Ident: "+ident); result = em.createQuery(" Select c from Customer c where c.identifier=:id", Customer.class).setParameter("id", ident).getSingleResult | |
selective update not working we try to optimize for our queries and tried a selective update, but in explorer it just shows query execution error: UPDATE ObjectNode o SET o.state = 5 where o.classIdentifier = '(MA)' and o.objectNameUpper = 'DMU200P2' and o.state = 0 and o.type = 1 and o.parentNode.classIdentifier | |
javax.persistence.criteria.CriteriaQuery Since: JPA 2.0 Selection getSelection () Return the selection of the query, or null if no selection has been set. Return: selection item Inherited from: AbstractQuery Since: JPA 2.0 CriteriaQuery groupBy ... Since: JPA 2.0 CriteriaQuery multiselect (List selectionList) Specify the selection items | |
javax.persistence.criteria.CriteriaBuilder JPA Interface CriteriaBuilder Used to construct criteria queries, compound selections , expressions ... CompoundSelection array ( Selection ... selections ) Create an array-valued selection item. Parameters: selections - selection items Return: array-valued compound selection Throws: IllegalArgumentException | |
javax.persistence.criteria.CompoundSelection JPA Interface CompoundSelection Type Parameters: - the type of the selection item Super Interfaces: Selection , TupleElement The CompoundSelection interface defines a compound selection item (tuple, array, or result of constructor). Since: JPA 2.0 Public Methods Selection alias (String name | |
javax.persistence.Query language SELECT statement or for a criteria query TransactionRequiredException ... is found not to be a Java Persistence query language SELECT query or a Criteria API query Since: JPA 2.0 ... List getResultList () Execute a SELECT query and return the query results as an untyped List. Return | |
javax.persistence.TypedQuery: IllegalStateException - if called for a Java Persistence query language SELECT statement or ... SELECT query or a Criteria API query Inherited from: Query Since: JPA 2.0 int getMaxResults ... a SELECT query and return the query results as a typed List. Return: a list of the results Throws | |
javax.persistence.criteria.Subquery JPA Interface Subquery Type Parameters: - the type of the selection item. Super Interfaces: AbstractQuery , CommonAbstractCriteria , Expression , Selection , TupleElement The Subquery interface defines functionality that is specific to subqueries. A subquery has an expression as its selection item | |
CriteriaQuery.multiselect(selectionList) - JPA Method;List selectionList ) Specify the selection items that are to be returned in the query result. Replaces the previously specified selection (s), if any. The type of the result of the query execution ... be a tuple- or array-valued compound selection item. The semantics of this method are as follows | |
javax.persistence.EntityResult with the SqlResultSetMapping annotation to map the SELECT clause of a SQL query to an entity result. If this annotation is used, the SQL statement should select all of the columns that are mapped to the entity ... when insufficient data is available are undefined. Example: Query q = em.createNativeQuery( " SELECT o.id, o | |
javax.persistence.ColumnResult with the SqlResultSetMapping annotation or ConstructorResult annotation to map a column of the SELECT list of a SQL query. The name element references the name of a column in the SELECT list — i.e., column ... this annotation in the metadata. Example: Query q = em.createNativeQuery( " SELECT o.id AS order_id, " + "o | |
javax.persistence.EntityManager named query. The select list of the query must contain only a single item, which must be assignable ... Object if there is only one column in the select list.) Column values are returned in the order of their appearance in the select list and default JDBC type mappings are applied. Parameters: sqlString | |
AbstractQuery | |
javax.persistence.criteria.AbstractQuery: the set of query roots Since: JPA 2.0 Selection getSelection () Return the selection of the query, or null if no selection has been set. Return: selection item Since: JPA 2.0 AbstractQuery groupBy | |
Step 5: Add a JSP Page In this step we will add the JSP that generates the guestbook HTML output: Open the [New JSP File] dialog box by right clicking WEB-INF under src/main/webapp (in the [Package Explorer] window), selecting New Other... Web JSP File and clicking Next . The parent folder should be WEB-INF | |
Step 4: Add a Servlet Class In this step we will add a servlet to manage guestbook web requests: Open the [New Servlet] dialog box by right clicking the guest package node (in the [Projects] window) and selecting New Servlet ... Enter GuestServlet as the class name - use exactly that case sensitive class name. The Java | |
Step 2: Define a JPA Entity Class To store objects in an ObjectDB database using JPA we need to define an entity class: Open the [New Java Class] dialog box, e.g. by right clicking the project node (in the [Projects] window) and selecting New Java Class ... Enter Guest as the class name - use exactly that case sensitive class name | |
Step 5: Add a JSP Page In this step we will add the JSP that generates the guestbook page output: Open the [New JSP File] dialog box by right clicking the WebContent node (in the [Package Explorer] window), selecting New Other... Web JSP File and clicking Next . Enter guest as the jsp file name - use exactly | |
Step 4: Add a Servlet Class In this step we will add a servlet to manage guestbook web requests: Open the [Create Servlet] dialog box by right clicking the guest package node (in the [Package Explorer] window), selecting New Other... Web Servlet and clicking Next . The Java package name should be guest. Enter | |
javax.persistence.FieldResult with the EntityResult annotation to map columns specified in the SELECT list of a SQL query to the properties or fields of an entity class. Example: Query q = em.createNativeQuery( " SELECT o.id AS order_id, " + "o ... Attributes String column default null Name of the column in the SELECT clause - i.e., column aliases | |
javax.persistence.StoredProcedureQuery - if the query is found not to be a Java Persistence query language SELECT query or a Criteria API ... is rolled back Since: JPA 2.1 Stream getResultStream () Execute a SELECT query and return the query ... to be a Java Persistence query language SELECT query or a CriteriaQuery query Inherited from: Query | |
javax.persistence.ConstructorResult with the SqlResultSetMapping annotation to map the SELECT clause of a SQL query to a constructor. Applies ... .createNativeQuery( " SELECT c.id, c.name, COUNT(o) as orderCount, AVG(o.price) AS avgOrder " + "FROM ... (Required) The mapping of columns in the SELECT list to the arguments of the intended constructor, in | |
Path | |
javax.persistence.Cacheable JPA Annotation Cacheable Target: TYPE Implemented Interfaces: Annotation Specifies whether an entity should be cached if caching is enabled when the value of the persistence.xml caching element is ENABLE_ SELECTIVE or DISABLE_ SELECTIVE . The value of the Cacheable annotation is inherited by | |
Which API should I use - JPA or JDO? that are supported only by JDO. Selecting the more popular API leads to more portable application |