Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version: 3.2.5 ga
Mapping documents:
Snippet generated from xdoclet:
Code:
<hibernate-mapping>
<class lazy="false" table="order_status" name="com.siim.blueocean.view.objects.CompletedAgainstScheduled">
<id name="id" type="long" column="id">
<meta inherit="true" attribute="id">ID</meta>
<generator class="native"/>
</id>
<property name="hospitalId" column="hospital_id" >
<meta inherit="true" attribute="hospitalId">Hospital Id</meta>
</property>
<property name="modalityType" column="modality_type" >
<meta inherit="true" attribute="modalityType">Modality Type</meta>
</property>
<property name="completedTimestamp" column="completed_ts" formula="case when completed_ts != '0000-00-00 00:00:00' then completed_ts else null end"/>
<property name="scheduledTimestamp" column="scheduled_ts" />
</class>
</hibernate-mapping>
Name and version of the database you are using: MySQL 5.0The generated SQL (show_sql=true):Code:
select count(this_.scheduled_ts) as y0_, count(case when this_.completed_ts is not null then this_.completed_ts else null end) as y1_, this_.modality_type as y2_ from order_status this_ where this_.modality_typ
e in (?, ?, ?, ?, ?, ?, ?, ?) and this_.scheduled_ts>=? and this_.scheduled_ts<? and this_.hospital_id=? group by this_.modality_type
This query when executed at the database works as expected when parameters are passed. However, does not return anything during program execution.Code:
public class CompletedAgainstScheduled extends BaseObject {
/**
*
*/
private static final long serialVersionUID = 6470860867871739372L;
private Long id;
private String hospitalId;
private String modalityType;
private Date completedTimestamp;
private Date scheduledTimestamp;
private int completed;
private int scheduled;
/**
* @hibernate.meta attribute="id" value="ID"
* @hibernate.id type="long" column="id" generator-class="native"
* @return
*/
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
/**
* @hibernate.meta attribute="hospitalId" value="Hospital Id"
* @hibernate.property column="hospital_id"
* @return
*/
public String getHospitalId() {
return hospitalId;
}
public void setHospitalId(String hospitalId) {
this.hospitalId = hospitalId;
}
/**
* @hibernate.meta attribute="modalityType" value="Modality Type"
* @hibernate.property column="modality_type"
* @return
*/
public String getModalityType() {
return modalityType;
}
public void setModalityType(String modalityType) {
this.modalityType = modalityType;
}
/**
* get and set completed orders
* @return
*/
public int getCompleted() {
return completed;
}
public void setCompleted(int completed) {
this.completed = completed;
}
/**
* get and set scheduled orders
* @return
*/
public int getScheduled() {
return scheduled;
}
public void setScheduled(int scheduled) {
this.scheduled = scheduled;
}
/**
* get and set completed orders
* @hibernate.property column="completed_ts" formula="case when completed_ts != '0000-00-00 00:00:00' then completed_ts else null end"
* @return
*/
public Date getCompletedTimestamp() {
return completedTimestamp;
}
public void setCompletedTimestamp(Date completedTimestamp) {
this.completedTimestamp = completedTimestamp;
}
/**
* get and set scheduled orders
* @hibernate.property column="scheduled_ts"
* @return
*/
public Date getScheduledTimestamp() {
return scheduledTimestamp;
}
public void setScheduledTimestamp(Date scheduledTimestamp) {
this.scheduledTimestamp = scheduledTimestamp;
}
}
Criteria generation code:
Code:
Criteria criteria = getSession().createCriteria(CompletedAgainstScheduled.class)
.setProjection(
Projections.projectionList()
.add(Projections.count("scheduledTimestamp"))
.add(Projections.count("completedTimestamp"))
.add(Projections.groupProperty("modalityType"))
).add(Restrictions.in("modalityType", modArr))
.add(Restrictions.ge("scheduledTimestamp", new Timestamp(c.getTimeInMillis())))
.add(Restrictions.lt("scheduledTimestamp", new Timestamp(cd.getTimeInMillis())))
.add(Restrictions.eq("hospitalId",hospitalId));
List<CompletedAgainstScheduled> l = criteria.list();
The count of schedued_timestamp and complete_timestamp should stored in the completed and scheduled attributes.
I have tried debugging the entire code but not able to figure out what the problem is. It should be a very minor stuff but not sure.
Any tips/help would be appreciated.
Thanks
Samuel