Two Laptop Bag
The moose likes Object Relational Mapping and the fly likes @Generatedvalue and MySQL Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Databases » Object Relational Mapping
Reply Bookmark "@Generatedvalue and MySQL" Watch "@Generatedvalue and MySQL" New topic
Author

@Generatedvalue and MySQL

Kamil Kuchta
Greenhorn

Joined: Mar 09, 2009
Posts: 17
I can't generate id value in MySQL using @Generatedvalue.
SQLException: no value for 2 parameter in exprection INSERT INTO tab(value, id) values(?, ?)

I tried to use everything what is in commentary

Thanks for help!
Gregg Bolinger
Ranch Hand

Joined: Jul 11, 2001
Posts: 15230

Is the column in the database defined correctly as a auto increment column?
Kamil Kuchta
Greenhorn

Joined: Mar 09, 2009
Posts: 17
Exactly. PrimaryKey, Integer, NotNull, Auto Inc, Unsigned, Zerofill
Paul Clapham
Bartender

Joined: Oct 14, 2005
Posts: 16487
    
    2

Normally if you have a column where unique keys are auto-generated, you leave that column out of your INSERT statements.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: @Generatedvalue and MySQL
 
Similar Threads
EJB with multiple MapKeys
Leaving any property unmapped to a column in Hibernate using annotation
JPA,/mysql/JBoss and a big head ache
hibernate to JPA: generator class=increment
HBM to Annotation: Foreign Generator