0
votes
0answers
6 views

How to read content of CLOB text storoed in MySQL

I have to store more than a page full of ASCII text into the following field through EclipseLink (2.4.1) and MySQL (5.1.x): @Column(columnDefinition="TEXT") private String hobies; public String ...
1
vote
1answer
27 views

Table name based on entity value in EclipseLink 2.5, JPA 2.0

I would like to create design based on entities and JPA 2.0. In our current architecture we store the data in 2000 partitions in MySQL. Each partition is MyIsam table with names from data_0000 to ...
0
votes
1answer
32 views

Updating One2One Relationship Object (JPA 2)

I have 2 Entities (User.class & Image.class) with a OneToOne Relationship. There is a problem updating the Image entity. It works when there is no existing Image Object, I just simply create a ...
1
vote
1answer
113 views

Cannot create table in test (Hibernate & H2)

I have an image mapping table that maps images to the various items that have images. This works as expected when I make the entries in the database by hand, and am retrieving, however when I try to ...
-1
votes
1answer
558 views

How to write JPA native query to join two tables. Eclipseink JPA,Glassfish3.x,EJB3.1, MySQL

What would be the correct way writing JPA native queries with joins and with Eclipselink JPA2.0 entities? Can some one tell me to execute the following SQL query using Eclipselink JPA native queries ...
0
votes
1answer
38 views

Hibernate JPA Cannot Create due to FK

When I try to create a new category in my application I am getting the below error which is complaining about a FK constraint. However the FK it is complaining about maps the Category Description to ...
0
votes
1answer
47 views

MySQL/JPA : How create a correclty relation and cascade?

I was very impress with my project, but suddenly I notice that I am doing something very wrong, 'cause, every create, merge, delete I was doing manually, but I should let the JPA take care of that for ...
0
votes
1answer
45 views

How to persist but avoid unique keys exceptions?

My problem is simple: A user has an address, address is composed of city, state and country. So for that I have this structure: public class User { .. //bi-directional many-to-one association ...
0
votes
1answer
82 views

JPA 2: Exception using @Table annotation

when i try to using @Table(" \" Employee \" ") annotation , it generate the exception. there is following exception Exception in thread "main" javax.persistence.PersistenceException: ...
0
votes
1answer
217 views

eclipselink MySQL left join error: unknown column

i have this data model: AbstractEntity (abstract, @MappedSuperClass) | +---- Subject (abstract, @Entity, joined) | | | +---- Person (@Entity) | | | ...
0
votes
2answers
422 views

Automatically generated Entities from mysql database in Netbeans always fail to deploy

I am new to Java EE (and to Netbeans). I have am trying to automatically generate entity classes from my mysql database... For simple relationships it works, but for the following it always fails: ...
0
votes
1answer
119 views

JPA (Hibernate, Mysql) Get Count while setmaxresults is used

Hi in mysql theres a way to get the total count after selecting with LIMIT, simply selecting FOUND_ROWS. Is there a way to do that in jpa to ? I use JPA with Hibernate as Persistence Provider and ...
0
votes
1answer
273 views

Is the element of “initialValue” of @TableGenerator not supported in Hibernate JPA?

@TableGenerator(name="Emp_Gen",table="ID_GEN", pkColumnName = "GEN_NAME",pkColumnValue = "Employee_GEN",valueColumnName = "GEN_VAL",initialValue = 1000,allocationSize = 100) Every is ok,but ...
2
votes
1answer
158 views

JPA generate tables from entities not doing anything

I am using Eclipse Indigo with Hibernate's JPA-2 implementation. The problem is that when I use that tool to "Generate Tables from Entities" there is no effect at all. I get 45 errors saying my tables ...
0
votes
1answer
209 views

MySQL or PostgreSQL for Hibernate + JPA2 project [closed]

I want to confirm which is better, I have seen that polls say that PostgreSQL is way ahead of MySQL in terms of speed with JPA/Hibernate. Want some feedback based on speed, reliability, compatibility ...
1
vote
1answer
68 views

JPA entity has more than one objects of the same class

@Entity public class A { //should be mapped by a public B b1; //should be mapped by a public B b2; } @Entity public class B { @ManyToOne public A a; ...
1
vote
2answers
2k views

Generate schema from entities using JPA2 + Hibernate + Eclipse 4.2 + MySQL 5.5

I am new to Hibernate/JPA and I am stuck at what I think is the last step. I have created a schema in my MySQL instance and want to generate the tables for the schema from the JPA entities I have ...
0
votes
0answers
122 views

play framework app on cloudfroundry - could not get database metadata

The application is started on cloudfoundry and the evolutions applied correctly. It is a play framework jpa aplication that works fine on my machine. this is the cloudfoundry log. ...
0
votes
1answer
153 views

JPA criteria subquery with common customerId field

How do I write the following MySQL query using JPA Criteria? select * from deptors where customerId in (select customerId from address where zipcode="12345-6789") and gender="male"; I have read ...
0
votes
1answer
764 views

Get the last inserted record's primary key

I have Entity class named Driver, My primary key generation mechanism is @Id @GeneratedValue(strategy = GenerationType.AUTO) private Long id; Now I need to add "driverCode" attribute to the ...
2
votes
0answers
3k views

Upload, Insert, Retrieve and Display Image using JPA JSF MySql [closed]

I am asking this question and i intend to answer the question for others to learn. Its pretty simple and straight forward. i Hope it helps. This is it Create your entity for example customer with ...
1
vote
2answers
134 views

how can i specify operator in order by clause?

I have the following query (using jpa 2.0): String query = " SELECT p.id, p.name FROM package p ORDER BY (p.id = :idPackage) DESC, (p.mPrice+p.vPrice) DESC LIMIT 10 "; ...
1
vote
2answers
412 views

How to make portable AND native ID generation in JPA 2 / Hibernate?

I would like to have native and portable id generation on my JPA 2 entities, currently running Hibernate and MySQL When using @GeneratedValue(strategy=AUTO), hibernate defaults to the ...
0
votes
1answer
407 views

How do databases interact with jpa annotated pojo classes via Hibernate?

I'm a bit confused about how getters and setters in JPA annotated POJO classes interact with a proposed MySQL database via Hibernate. I understand that you can have, for example, the following: ...
0
votes
0answers
117 views

How to create mySQL View for date range?

I have a Table RANGE_COST with date interval and total cost [15.05.2012, 20.05.2012, 500$] in mySQL Database. How to create a view with Daily Cost? I mean a table with [day, dailyCost]. It would have ...
1
vote
1answer
278 views

How create this native query in JPA?

I have this query in MySQL : SELECT genre FROM genre g, person_genre pg, rfid rfid, room room WHERE pg.id_genre = g.id and pg.id_person = rfid.id_person and rfid.id = room.id_rfid ...
0
votes
0answers
334 views

Class not found exception for MySql database driver com.mysql.jdbc.Driver

I am using JBoss as the container for deploying an EAR application using MySql database confifuration. while deploying the application, i am getting an error : Could not create connection; - ...
1
vote
1answer
142 views

Eclipselink JPA Type-Safe Query using IN Statement

I set up method to query database using WHERE IN, but the query performs opposite of how I expect. CriteriaBuilder qb = getEntityManager().getCriteriaBuilder(); CriteriaQuery<ActivityLog> c = ...
1
vote
1answer
519 views

What database and java library to use for Spatial Analysis?

I have been working on a web project that stores locations for users. The project uses currently MySql 5.5 and JPA 2 for mapping the relation database, together with EJB 3.1 as the middle tier. I ...
3
votes
3answers
355 views

How to bulk delete from element collection in jpa

I'm using jpa 2.0 and I have the following entity: @Entity public class Folder{ @ElementCollection @CollectionTable(name="folder_files") private Set<String> files; // ...
0
votes
1answer
54 views

Correct foreigen key approach in jpa Or data saving basic approach

This question of mine is subjective i am getting a list of objects from a third site. now i want to save that data in database. suppose the data is List. This response is to a query that i fired to ...
1
vote
2answers
2k views

JPA: MySQL says table don't exist, but it exist actually

I have the follow script to create the table autolife.log: CREATE TABLE `log` ( `id` int(11) NOT NULL AUTO_INCREMENT, `idpoint` int(11) NOT NULL, `value` varchar(10) NOT NULL, `time` ...
0
votes
1answer
1k views

JPA Native sql resultlist casting

I've got some problem. I'm working with jpa (eclipselink from glassfish 3.1) and a mysql db. Let suppose I've got a student table with a 'creation' field that is a datetime. Using sql if I want to ...
0
votes
1answer
322 views

Issue with Mysql auto generated PK used for another table and JPA

My use case is as follows: I use MySQL and JPA 2 and I have two entities: Order and LineItem that are associated by a OneToMany relationship. I would like for the GUI layer to persist the Order ...
0
votes
1answer
232 views

jpql select query with where clause does not differentiate non english characters

i'm using hibernate jpa 3.6.7. i have a table that stores country names and i have a country named "Türkiye". i wrote a query like this: Query query = em.createQuery("SELECT COUNT(c) FROM ...
3
votes
1answer
357 views

MyISAM dialect generates wrong DDL

We use the MyISAM dialect org.hibernate.dialect.MySQLMyISAMDialect to auto generate DDL files based on JPA2 using 3.6.9.Final hibernate provider on a MySQL 5.5 database. The create SQL file gets ...
3
votes
2answers
6k views

How to fetch all data in one query

I have multiple entities that are queried via JPA2 Criteria Query. I am able to join two of these entities and get the result at once: CriteriaBuilder criteriaBuilder = em.getCriteriaBuilder(); ...
5
votes
2answers
1k views

Do I need DataSource in JPA Hibernate project?

I am preparing some application with usage of JPA 2.0, Hibernate as provider, MySQL 5 as database, which will be deployed on JBoss AS 7.0.2.I have already configured some basics in persistence.xml ...
0
votes
1answer
333 views

How many concurrent MySQL connections are allowed with Hibernate/JPA?

How many max users can concurrently use MySQL database? I am using Hibernate Implementation of JPA.
1
vote
2answers
211 views

mysql query - optimizing existing MAX-MIN query for a huge table

I have a more or less good working query (concerning to the result) but it takes about 45seconds to be processed. That's definitely too long for presenting the data in a GUI. So my demand is to find a ...
1
vote
1answer
360 views

JPA causes trouble for itself

I'm using JPA/EclipseLink, it throws this exception Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'NAME' in 'field list' Below is the generated query: ...
0
votes
1answer
322 views

JPA - Multiple columns discriminator

I have 3 tables like this in MySQL 5: | PERSON | | id | fullName | isEmp | isParent | | EMPLOYEE | | personId | code | | PARENT ...
1
vote
1answer
283 views

JPA2 with MySQL backend: MyISAM or InnoDB

Obviously, there is plenty out there about MyISAM vs InnoDB engine selection, but I couldn't find anything specific to JPA2. Is it possible to use a MyISAM engine together with java persistence API, ...
10
votes
1answer
513 views

JPA2 Criteria API .as(String.class) casting to char(1) - How do I work around this?

Using the criteria api, I have a query which does something like: CriteriaBuilder cb = entityManager.getCriteriaBuilder(); CriteriaQuery<SourcePath> pathQuery = ...
1
vote
3answers
361 views

Getting the ID (PK) of a newly persisted entity

I'm developing a J2EE 6 Web Application, using a MySql 5.02 DataBase. I'm trying to generate a hash digest of the ID, every time I create a new Entity. This is set to a column on the Table. But well, ...
3
votes
1answer
3k views

How to map a MySQL char(n) column to an instance variable using a JPA/Hibernate annotation?

I encounter a JPA/Hibernate mapping problem on a column "language" in a MySQL table whose type is char(7). In my entity, the code generated for the field is: private String language; this ...
3
votes
3answers
1k views

Cross database joins in JPA

Is it possible to do cross database table joins in JPA? I have a users table in one database which has a foreign key to a organizations table in a separate database. Both the databases are on same ...
1
vote
1answer
5k views

Row numbering with p:dataTable

I have this query: SELECT @rownum:=@rownum+1 'no', m.title, m.author, REPLACE(SUBSTRING_INDEX(m.content, ' ', 20), '<br>', ' '), m.viewed, m.hashid FROM book m, (SELECT @rownum:=0) r WHERE ...
2
votes
2answers
800 views

JPA passing parameter as Set

i want to pass a parameter in the jpql as set in an update statement. here is the statement: Query query = entityManager.createQuery("UPDATE Patient patient SET " ...
0
votes
1answer
2k views

Spring-JPA-Hibernate writing to the DB fails (delaying identity-insert due to no transaction in progress)

I am using Spring 3.0.5.RELEASE and Hibernate 3.6.1.Final. Reading from the MySql DB is ok, but when I try writing to it I get this in the log: 22 mars 2011 22:37:34,625 DEBUG InjectionMetadata: ...

1 2