On Sep 29, 2008, at 12:06 PM, WebObjects wrote:

Application:
ControlHorarios
Error:
java.lang.ClassCastException: com.webobjects.eocontrol.EOGenericRecord
Reason:
com.webobjects.eocontrol.EOGenericRecord
I have this in the code:
                try {
EOQualifier qual = Empleado.E_MAIL.eq(email).and(Empleado.PASSWORD.eq(password));
                        
emp = Empleado.fetchRequiredEmpleado(session().defaultEditingContext(), qual);
                        System.out.println(emp.nombre()+" y con pass 
"+emp.password());
                        this.errorMessage = "Success";
                        
                } catch (NoSuchElementException e) {
                        this.errorMessage ="EMail o Contrase–a Erroneos";
                        
                }catch (Exception e){
                        //TODO
                        System.out.println(emp.nombre()+" y con pass 
"+emp.password());
                }

Hi,

If you enter invalid search information, you won't be pulling an object up. However, if you do pull a valid object up via EOQualifer fetch, it's going to be of type EOGenericRecord. You have to coerce it to the proper object type. Example...

Employee emp;

emp = (Employee )Empleado.fetchRequiredEmpleado(session().defaultEditingContext(), qual);

hope that helps,

Jaime Magiera

Sensory Research
http://www.sensoryresearch.net

_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to