Advertisement

10.07.2008 at 09:19AM PDT, ID: 23794310
[x]
Attachment Details

Using Date type in an EJB Query Language

[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

6.4
Tags:

NetBeans, 6.1, Installed on local machine running apache derby database server in backend, implementing persistence interfacing tables with objects,, Java

I am developing an application in NetBeans thats uses the built in database server (apache derby), i've used the IDE to generate entity classes refelecting tables in my database. The IDE has also created a persistance unit and an entity manager, i am trying to run an EJB Query on a table in the database but i am having some syntactical difficulties which i am having trouble resolving.

This is the EJB QL:

SELECT m FROM Measurement m WHERE m.measurementDateofbooking = '07.10.2008'

This is the Measurement Table Structure in the database:

MEASUREMENT                             Data Type
=====================================
measurement_id                           Auto Gen Int PK
measurement_customer_id          Int FK
measurement_dateofbooking       Date
measurement_timeofbooking       Time
measurement_completed             Char

This is a relevant snippet of the measurement Entity Class: (See Code Snippet)

This is the exception i recieve:

Exception Description: The object [07.10.2008], of class [class java.lang.String], from mapping [oracle.toplink.essentials.mappings.DirectToFieldMapping[measurementDateofbooking-->MEASUREMENT."measurement_dateofbooking"]] with descriptor [RelationalDescriptor(mk_carpets_alpha_entity_classes.Measurement --> [DatabaseTable(MEASUREMENT)])], could not be converted to [class java.sql.Date].

Exception in thread "AWT-EventQueue-0" Local Exception Stack:

Exception [TOPLINK-3002] (Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (12/06/2007))): oracle.toplink.essentials.exceptions.ConversionException

Exception Description: The object [07.10.2008], of class [class java.lang.String], from mapping [oracle.toplink.essentials.mappings.DirectToFieldMapping[measurementDateofbooking-->MEASUREMENT."measurement_dateofbooking"]] with descriptor [RelationalDescriptor(mk_carpets_alpha_entity_classes.Measurement --> [DatabaseTable(MEASUREMENT)])], could not be converted to [class java.sql.Date].

        at oracle.toplink.essentials.exceptions.ConversionException.incorrectDateFormat(ConversionException.java:119)
        at oracle.toplink.essentials.internal.helper.Helper.dateFromString(Helper.java:747)


After looking at the exception i thought it might be the format of the date, but i tried the same date in the database sql command ('07.10.2008') and it retrieved the results fine. I even tried changing my EJB Q to this: SELECT m FROM Measurement m WHERE m.measurementDateofbooking = new Date(2008,10,7)
and it still didnt work.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
package mk_carpets_alpha_entity_classes;
 
import java.beans.PropertyChangeListener;
import java.beans.PropertyChangeSupport;
import java.io.Serializable;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
import javax.persistence.Transient;
 
/**
 *
 * @author ______
 */
@Entity
@Table(name = "MEASUREMENT")
@NamedQueries({@NamedQuery(name = "Measurement.findByMeasurementId", query = "SELECT m FROM Measurement m WHERE m.measurementId = :measurementId"), @NamedQuery(name = "Measurement.findByMeasurementDateofbooking", query = "SELECT m FROM Measurement m WHERE m.measurementDateofbooking = :measurementDateofbooking"), @NamedQuery(name = "Measurement.findByMeasurementTimeofbooking", query = "SELECT m FROM Measurement m WHERE m.measurementTimeofbooking = :measurementTimeofbooking"), @NamedQuery(name = "Measurement.findByMeasurementCompleted", query = "SELECT m FROM Measurement m WHERE m.measurementCompleted = :measurementCompleted")})
public class Measurement implements Serializable {
    @Transient
    private PropertyChangeSupport changeSupport = new PropertyChangeSupport(this);
    private static final long serialVersionUID = 1L;
    @Id
    @Column(name = "\"measurement_id\"", nullable = false)
    private Integer measurementId;
    @Column(name = "\"measurement_dateofbooking\"", nullable = false)
    @Temporal(TemporalType.DATE)
    private Date measurementDateofbooking;
    @Column(name = "\"measurement_timeofbooking\"", nullable = false)
    @Temporal(TemporalType.TIME)
    private Date measurementTimeofbooking;
    @Column(name = "\"measurement_completed\"")
    private Character measurementCompleted;
    @JoinColumn(name = "\"measurement_customer_id\"", referencedColumnName = "\"customer_id\"")
    @ManyToOne
    private Customer measurementCustomerId;
 
 
 
Accepted Solution by awax187:

All comments and solutions are available to Premium Service Members only. Start your 7-day free trial to view the solution to this question.

Already a member? Login to view this solution.

 
 
20081119-EE-VQP-46 - Hierarchy / EE_QW_2_20070628