Nick,Well Gentleman, it is a big FAIL!! Still not working. It is one o'clock in the morning, I am calling it a day. A bad way to finish it though.
Your problem is the "type" set in your <id.../> tag. From (RTFM) the page: http://www.hibernate.org/hib_docs/reference/html/or-mapping.html#or-mapping- s1-4--generator
See the "identity" description, which reads:
identity - supports identity columns in DB2, MySQL,
MS SQL Server, Sybase and HypersonicSQL. The returned
identifier is of type long, short or int.
The issue is your attempted use of class "java.lang.Long" instead of of "long", "short", or "int". I had a similar problem months ago when I started using Hibernate, until I re-read that primer.
Also, you may wish to set your generator from "identity" to "native". That way, if you switch database products, it will automatically figure out if it can use identity, sequence, or hilo. (see the same document section just a few lines lower under the "native" explanation)
Regards, David
I hit on the hibernate forum as you suggested Nick, without not much succes. But I posted a message on a thread discussing the same issued I am having...
-- _________________ Mario St-Gelais www.gestionti.com "Good judgment comes from experience- usually experience which was the result of poor judgment" Bill Putnam
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]