-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: H2 database issue
PostPosted: Sun Oct 10, 2010 10:33 am 
Newbie

Joined: Sun Oct 10, 2010 10:27 am
Posts: 1
I migrated my application from grails 1.0.2 to grails 1.3.5. Since then i am facing issues while executing some of the existing database queries. The data base used is H2. Following error is coming while attempting the following query" "appointment = AuditAppointment.findByAudit(currentAudit) "

org.h2.jdbc.JdbcSQLException: Parameter "#1" is not set; SQL statement:select this_.id as id573_0_, this_.version as version573_0_, this_.appointment_address_id as appointm3_573_0_, this_.appointment_contact_id as appointm4_573_0_, this_.appointment_date as appointm5_573_0_, this_.contact_date as contact6_573_0_ from audit_appointment this_ where this_.id=? [90012-143]
at org.h2.message.DbException.getJdbcSQLException(DbException.java:327)
at org.h2.message.DbException.get(DbException.java:167)
at org.h2.message.DbException.get(DbException.java:144)
at org.h2.expression.Parameter.checkSet(Parameter.java:73)
at org.h2.command.Prepared.checkParameters(Prepared.java:161)
at org.h2.command.CommandContainer.query(CommandContainer.java:79)
at org.h2.command.Command.executeQuery(Command.java:132)
at org.h2.jdbc.JdbcPreparedStatement.executeQuery(JdbcPreparedStatement.java:96)
at AuditAppointmentController$_closure2.doCall(AuditAppointmentController.groovy:38)
at AuditAppointmentController$_closure2.doCall(AuditAppointmentController.groovy)
at java.lang.Thread.run(Thread.java:619)

Following is the code:
class Audit {
//List parties;

Boolean currentAudit

AuditAppointment auditAppointments;

String toString() {
"Audit For: ${this.employerName}"
}

Class AuditAppointment contain relation (belongsTo) with Audit class
like,
class AuditAppointment {
static hasMany = [appointmentHistory:AppointmentHistory,
appointmentComments:AppointmentComment]
static belongsTo = [audit:Audit];

first the query "def currentAudit = Audit.findByCurrentAudit(true)" is executed.First query is returning the records.
The results(object of Audit) are passed to the 2nd query:
"appointment = AuditAppointment.findByAudit(currentAudit)"

internally it creates hibernate query like, select this_.id as id573_0_, this_.version as version573_0_, this_.appointment_address_id as appointm3_573_0_, this_.appointment_contact_id as appointm4_573_0_, this_.appointment_date as appointm5_573_0_, this_.contact_date as contact6_573_0_ from audit_appointment this_ where this_.id=?

I am new to H2, not getting idea how to resolve the issue.

Thanks,
Ayush


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.