-->
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.  [ 9 posts ] 
Author Message
 Post subject: MySQL enum Mapping
PostPosted: Mon Nov 03, 2008 9:21 am 
Newbie

Joined: Fri Jun 20, 2008 8:56 am
Posts: 15
Hi.

I´ve got a MySQL table called "Computer" with a column "BLOQUEADO" type ENUM('No','Si').
I´ve made a EnumUserType and my mapping file is like this

<property column="BLOQUEADO" name="Blocked">
<type name="types.EnumUserType">
<param name="enumClassName">MyProject.types.NO_SI</param>
</type>
</property>

But what I need is Hibernate to give me the index value of the enum type.
For example, if a computer has BLOQUEADO='Si' I want to get a 2.

Is that possible?

Thank´s.


Last edited by fernan3682 on Tue Nov 04, 2008 4:14 am, edited 1 time in total.

Top
 Profile  
 
 Post subject:
PostPosted: Mon Nov 03, 2008 10:33 am 
Newbie

Joined: Mon Oct 27, 2008 3:27 pm
Posts: 7
I think It could be better if you post additional information about your problem. But I am thinking the problem lies within the implementation of your EnumUserType. Check the following url:

http://weblog.dangertree.net/2007/09/23 ... hibernate/


Top
 Profile  
 
 Post subject:
PostPosted: Tue Nov 04, 2008 8:39 am 
Newbie

Joined: Fri Jun 20, 2008 8:56 am
Posts: 15
Hi avilla, thank´s for your response.

To give additional information I´ll tell you what I exactly want to do.

I have a MySQL Table called "COMPUTER" with a "BLOQUEADO" field defined as an ENUM('No','Si').
I have an EnumUserType too copied from "http://www.hibernate.org/272.html".

What I need is to get in nullSafeGet method the enum index (ordinal) according to that field.
For example, if BLOQUEADO='No' I want to get a '0'.

My Files are:

----------BLOQUEADO.java-----------
public enum BLOQUEADO implements Serializable {
NOT,
YES;

---------COMPUTER.hbm.xml--------------
<property column="BLOQUEADO" name="Blocked">
<type name="types.EnumUserType">
<param name="enumClassName">MyProject.types.NO_SI</param>
</type>
</property>


Top
 Profile  
 
 Post subject:
PostPosted: Tue Nov 04, 2008 9:39 am 
Newbie

Joined: Mon Oct 27, 2008 3:27 pm
Posts: 7
First I think you won't need to define a enum on the table, with a tinyint would work. Also in the case you want to use the ordinal forget about that sample code, although you could modify it to your needs.
In that case you should read this example. They are defining an usertype based on the ordinal of the enum

http://www.hibernate.org/312.html


Hope its work, let me know[/code]


Top
 Profile  
 
 Post subject:
PostPosted: Tue Nov 04, 2008 9:46 am 
Newbie

Joined: Fri Jun 20, 2008 8:56 am
Posts: 15
I´m thinking about creating a method into enum class that returns me the value I need.
Do you know how to call that method from nullSafeGet, maybe using enumClass?

It would be very helpfull.

Thank´s.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Nov 04, 2008 10:14 am 
Newbie

Joined: Mon Oct 27, 2008 3:27 pm
Posts: 7
No necesitas hacer un metodo para obtener el ordinal de un enum


Top
 Profile  
 
 Post subject:
PostPosted: Tue Nov 04, 2008 1:35 pm 
Newbie

Joined: Fri Jun 20, 2008 8:56 am
Posts: 15
Lo quiero hacer para poder cambiar el valor del enum para poder traducirlos en inglés. Por ejemplo sí el valor del enum es SI,en el nullsafeget quiero poder llamar un metodo en el enum que me devuelva un tipo enumerado YES.
Se que es algo enrevesado.

Pd:No sabía que hablabas español,así es mas fácil.

Un saludo


Top
 Profile  
 
 Post subject:
PostPosted: Tue Nov 04, 2008 2:44 pm 
Newbie

Joined: Mon Oct 27, 2008 3:27 pm
Posts: 7
Entiendo pero por eso mismo te pregunto si quieres usar el valor ordinal ya de por si el enum te provee un metodo para obtener el ordinal de dicho enum. Ahora si no quieres recaer en el metodo del ordinal, ( el cual va a alterar su valor si por ejemplo cambias el orden y con ello la consistencia de la informacion) entonces usa otro metodo, en el primer ejemplo del link que te envie eso es lo que se hace define un metodo que es el que va a llamar para obtener el valor entero de dicho enum y ese es el que guarda en la tabla


Top
 Profile  
 
 Post subject:
PostPosted: Wed Nov 05, 2008 4:34 am 
Newbie

Joined: Fri Jun 20, 2008 8:56 am
Posts: 15
Ya he solucionado el problema.
He tenido que implementar un método propio en la clase enum que en función del String recibido me devolviese el tipo.
Por último he tenido que definir en el .hbm.xml el nombre de este método con
<param name="valueOfMethod">valor</param>

Ahora tendré que pensar en como hacer el paso contrario cuando quiera escribir en mi BBDD puesto que los textos tienen que estar en castellano.

Gracias por todo :)


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

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.