TopLink is one of the leading Java persistence products and JPA implementations. TopLink is produced by Oracle and part of Oracle's OracleAS, WebLogic, and OC4J servers.

learn more… | top users | synonyms

0
votes
0answers
11 views

Toplink ORM Vs Stored Proc

My current application is using TOPLINK as ORM to connect to Oracle Database. First of all I am not very comfortable with Tolink! So am confused whether to go with toplink or Stored Proc for the new ...
0
votes
1answer
20 views

getting Connection reset by peer exception (toplink)

I am using the following code to ensure that the file contents are written successfully to disk public void copyFileFromUrl(URL source, File target, int count) throws IOException { InputStream ...
0
votes
0answers
15 views

Toplink: How to find the client session executing current database query?

I have an sql query running on the database that takes hours. I want to know the Client session (end user) executing this query. My application is a multi-users application and it use a database ...
0
votes
1answer
50 views

SWT problems with saving data in the data base

I am trying to make an editable table by using swt, while I have trouble to save dates which are modified in the database by using toplink: if ...
0
votes
0answers
53 views

Aggregated objects cannot be written/deleted/queried independently from their owners

I have a class like this: @Entity @Indexes(value={ @Index(name="idx_produto", columnNames={"codigoInterno"}), @Index(name="idx_produto_ean_com",columnNames={"eanComercial"}), ...
0
votes
2answers
63 views

How to stop TopLink's logging in Weblogic application?

I'm developing an application in Weblogic 12.1 using TopLink as the JPA provider (the one that came with Weblogic). My application uses a lot of 'SELECT FOR UPDATE NOWAIT' queries, which usually fail ...
1
vote
1answer
68 views

Log4J SQL Logging TopLink

Does anyone know solution how to see SQL log on console after using method which invoking some sql query? I am using Eclipse, Log4J fw and TopLink V11.1.1.5. This is my log4j file: ...
0
votes
0answers
61 views

top links not working in magento

When i clicked on the top links the links are not working. It displays the '#' in url only. What is the problem in my code: This is in customer.xml file: <default> <!-- ...
0
votes
0answers
61 views

WebLogic Toplink (its xml parser?) configuration issue

I have a web application (war packaged) with toplink.jar and xmlparserv2.jar files under WEB-INF\lib. The problem is that I get ]] Root cause of ServletException. java.lang.NoClassDefFoundError: ...
0
votes
1answer
42 views

Longer Execution time for a query in toplink

I Have a query that is assigned to this variable FILE_DETAILS in below piece of code, when this query is executed in SQLDeveloper/toad its getting executed faster, but when used in toplink or jdbc its ...
0
votes
1answer
162 views

How to execute a cascading JPA/toplink batch update

Background I have a problem with a JPA cascading batch update that i need to implement. The update will take some 10000 objects and merge them into the database at once. The objects have an average ...
0
votes
1answer
37 views

Toplink xml descriptor reference

I am very new to Toplink. And new to the current project, that I am maintaining. The project has a 1 MB file size project descriptor (xml project descriptor). When I open it with Toplink workbench, ...
0
votes
1answer
16 views

Constructor in toplink model class

Can I have a non default multiple argument constructor in toplink. For example public class Employee { private String empId; public Employee(String empId) { this.empId = empId; } }
0
votes
0answers
72 views

Migration from TopLink to JPA (Hibernate)

I would like to migrate from Toplink to JPA (hibernate). There are several methods specific to TopLink Unit of work. I would like to know what are their equivalent in JPA. Could you confirm my ...
0
votes
1answer
99 views

Back-to-top link on browser-bottom, then on footer-top

How to make a back-to-top link slide up to position X (footer top) when the bottom of the browser window is reached i.e. when the user has completely scrolled down the page? Right now, my page has a ...
2
votes
1answer
193 views

After EntityManager remove object found during synchonization

I am trying to remove an Entity that has a one-to-many relationship with another entity, with an Application managed EntityManager. The object seems to be removed just fine but then when another ...
0
votes
2answers
135 views

@MappedSuperclass static weaving with EclipseLink and multiple jars

My entities objects are scattered in multiple jars. In jar A I have a base class name MyBase which is annotated with @MappedSuperclass. In jar B there is an entity class which derives from MyBase. The ...
0
votes
1answer
242 views

JPA/EclipseLink: disable cascade for certain merge operations?

I am using EclipseLink 2.3.3. with a data model with about 100 entities. I have a Java class mapped to each database table using annotations. I have two use cases to implement. One is that a new ...
1
vote
1answer
30 views

Toplink in clustered environment Exception

*My application using Toplink with Spring and working fine...but when test application on clustering environment it throwing exception ... I have 2 nodes of servers (n1 and n2) when i shutdown ...
0
votes
1answer
40 views

Toplink and CMT message driven bean

I am trying to integrate Toplink with CMT Message driven bean. MY MDB is CMT. When I try to use unitofwork commit it is erroring out saying a global transaction is present so can not do local ...
0
votes
0answers
45 views

TopLink / OAS Error (OAS v10.1.3.1)

Background: Application is a retail ecommerce site. Significantly complex set up in a rackspace datacenter making calls to proprietary EFT servers located in a separate proprietary datacenter. I am ...
0
votes
2answers
336 views

Use criteria to query embeddable object

I'm using Toplink Grid(Eclipselink) as the my JPA implementation framework. I met a a exception as below while I tried to use Criteria to query a Embeddable object: Exception [EclipseLink-6119] ...
0
votes
1answer
142 views

how to load one to many relation entities in jpa with counts of the child entities

I get into this issue while working on Spring/Hibernate/JPA. Here is the outline of my question. I have OneToMany relationship between student and attendance tables. Here is how my entities are ...
0
votes
1answer
265 views

JPA INNER JOIN WITH VIEW

I have the Results JPA class containing the folowing anotation. @JoinColumn (name = "cod_id", insertable = false, updatable = false, referencedColumnName = "cod") @ManyToOne(optional = true, ...
1
vote
1answer
145 views

jpa NamedQuery with to_timestamp not working

first of all thanks for helping me and sorry for my inglish. I'm having a problem when I try to execute this query, in the table all the columns are varchars2 and I need to compare them as they where ...
1
vote
1answer
125 views

TopLink with JPA taking more connections

In my application we are using Toplink with Jpa. Here the problem is we are using stored procedures in this application, we are taking the connection using Jndi connection for Stored Procedure ...
1
vote
1answer
92 views

Toplink JPA Inheritance - Summary/Detail relationship

I'm using toplink JPA in a webapp and I want to map just one table to a class hierarchy. I want to have one class that represents most of the data, and one class that inherits from that (so it gets ...
0
votes
0answers
67 views

toplink enforce lazy loading runtime

In TopLink, can I enforce lazy loading with my Object/entity that has some composite ref. objects. Currently I have eager initialization .
1
vote
2answers
165 views

translate SQL join to JPQL

Currently, all articles in the join for the JPQL query are returned in the getRangeOfArticles method, whereas only a range of articles should get returned. The MySQL console output I'm after, but ...
0
votes
1answer
120 views

JPQL query max int value of a column in a join

How do I query with JPQL for the max of a join, as this SQL: SELECT MAX(MESSAGENUMBER) FROM ARTICLE left join NEWSGROUP on ARTICLE.NEWSGROUP_ID=NEWSGROUP.ID WHERE NEWSGROUP.newsgroup = ...
1
vote
3answers
228 views

why isn't a new entity persisted?

In the event of a NoResultException how do I instantiate and persist a Newsgroup entity? package net.bounceme.dur.usenet.driver; import java.util.logging.Logger; import javax.mail.Folder; import ...
0
votes
1answer
104 views

JPA removes MySql triggers

Because my persistence.xml uses drop-and-create-tables: <?xml version="1.0" encoding="UTF-8"?> <persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" ...
0
votes
0answers
43 views

returning dynamic object from Toplink

Hi all, anyone knows how to return a Dynabean/HasMap/Set/Map or any "dynamic object" as the result of a query in TOPLINK? The main requirement is not to have a concrete "reference class" (model). ...
0
votes
0answers
36 views

toplink entity in servlet session

What are the best practices of putting objects in session? What should be the nature of those objects? Can ORM entities be used in session or is it a bad practice? We are using Toplink entities in ...
0
votes
1answer
31 views

Rules for writing delete queries in JPQL

Are there any rules to write queries (especially delete) in JPQL with Toplink Persistence Provider? any reference please..
2
votes
2answers
3k views

Unable to have correct value with SELECT query using MAX() in JPA

I am new in JPA and I have a problem when I try to query to the database using MAX() function. Code of my function is following. Can anyone help me? Thank you. public int getMaxId(){ ...
0
votes
1answer
136 views

One table is not being created by toplink

I'm feeling really stupid having to ask this. But I've been looking at my code for 4 hours and can't figure it out. I have rebuild my database several times and can't get it to work. One of my tables ...
0
votes
3answers
1k views

Most popular JPA implementation [closed]

I am a junior programmer and was asked to develop an application that should utilize the Java Persistence API (JPA). Which is the most popular JPA implementation (Hibernate, Toplink, EclipseLink) ...
0
votes
1answer
75 views

getTopLinkTemplate is null with Spring

I'm trying to use TopLink with Spring but I'm having a problem. I'm using it in a webservice (CXF). When I use getTopLinkTemplate(), the resul is null. Here is my applicationContext.xml : <bean ...
1
vote
1answer
1k views

how to display toplinks at footer in magento?

How can i display below toplinks in footer, i used below code in Footer.phtml file, <?php echo $this->getChildHtml('topLinks'); ?> but the links are not displayed?. How can i do this? ...
0
votes
2answers
84 views

Syntax to query two fields in a table with JPA

Referencing JPQL, it's not clear to me exactly how to query a table. What I want is, if it exists, the @Entity Note for a given messagId and group, but I don't understand the syntax. How do I ...
1
vote
0answers
306 views

View SQL generated by EJB Query object?

Is there a way to view the underlying SQL generated by a javax.persistence.Query object? In other words, I have the following EJB QL query: SELECT f FROM FunkyObject f where f.id = 4 I would like ...
1
vote
2answers
240 views

drop-and-create-tables drops too easily

I just switched my persistence.xml from <property name="toplink.ddl-generation" value="drop-and-create-tables"/> to <property name="toplink.ddl-generation" value="create-tables"/> ...
2
votes
1answer
1k views

Unknown abstract schema type

Based on the answer from axtavt, this is almost certainly a naming problem between Notebean and NoteBean. Is there a particular convention to follow here, just normal CamelCase? I believe that I've ...
2
votes
1answer
114 views

How to exclude one table from drop-and-create-tables with Ecliselink?

I use Eclipselink 2.3.2 and want to know, if there is an way to exclude a single table/entity to be excluded from ddl-generation strategy drop-and-create-tables? I need to preserve the content of this ...
-1
votes
2answers
1k views

Examples and tutorials for TopLink

I can't find any good tutorials or examples of simple application that would map object to relational database using TopLink. Do you know any? The only one, that I could find was: ...
0
votes
1answer
392 views

JPA many to many cascading delete

I've just started with JEE6 using netbeans IDE, and now i'm learning JPA with toplink. I'm using Netbeans IDE and mySQL. I created 2 very simple tables, with a many to many relationship: table ...
0
votes
2answers
574 views

JPA : Issue with foreign keys, multiple primary keys and many to one relation

I am working on an Java/J2EE web application. The persistence of data is made by JPA/TopLink. And I have an issue with this entity : @Entity @Table(name = "articlecatalogue_has_article", catalog ...
0
votes
2answers
439 views

Expression Builder to SQL Query

I know, that similiar post was posted already (SQL query from Toplink expression), but I didnt find an answer there. I would like to get SQL query from Expression Builder expression: I have ...
0
votes
1answer
270 views

How to add a “myfields >= TRUNC(sysdate)” clause with ExpressionBuilder to a ReportQuery (Toplink)

I've this code Expression expRefr = new ExpressionBuilder(); expRefr = expRefr.and(new ExpressionBuilder().get("refrCd").equal(referenza)); expRefr = ...

1 2 3 4