use the user forum (but remember to read the posting guidelines for how to ask for help since you did not give enough info anyhow)

/max

Hello,

I need help with Hibernate3. I want to connect a mysqldb and java, but I can't because exist an error which I can't solve.
Message's error is follow:

e= GenericJDBCException  (id=24)
org.hibernate.exception.GenericJDBCException: could not insert: [com.prueba.dal.Categorias]

This is my hibernate.properties:

                
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd";>
<hibernate-configuration>
     <session-factory name="java:hibernate/SessionFactory">
<property name="hibernate.connection.driver_class">org.gjt.mm.mysql.Driver</property> <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/escuela</property> <property name="hibernate.cglib.use_reflection_optimizer">true</property>
        <property name="hibernate.connection.username">root</property>
        <property name="hibernate.c3p0.min_size">5</property>
        <property name="hibernate.c3p0.max_size">20</property>
        <property name="hibernate.c3p0.timeout">1800</property>
        <property name="hibernate.c3p0.max_statements">50</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
        <property name="hibernate.jdbc.batch_size">1</property>
        <property name="hibernate.show_sql">true</property>
        <property name="use_outer_join">false</property>
       <mapping resource="com/mcgr/dal/Personas.hbm.xml" />
        <mapping resource="com/mcgr/dal/Clase.hbm.xml" />
        <mapping resource="com/mcgr/dal/Categorias.hbm.xml" />
        <mapping resource="com/mcgr/dal/Niveles.hbm.xml" />
        <mapping resource="com/mcgr/dal/ClasePersonas.hbm.xml" />
        </session-factory>
</hibernate-configuration>

MySQL version: 4.0.

Thanks in advance.




-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
_______________________________________________
hibernate-devel mailing list
hibernate-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/hibernate-devel

Reply via email to