Pro |
|
Joined: Fri Nov 19, 2004 5:52 pm Posts: 232 Location: Chicago, IL
|
I haven't had a chance to test it yet. I'm getting ready to now. One thing that I ran into previously though was that I was using and it was using "hi lo" which isn't what I wanted.
@Id(generate=GeneratorType.AUTO)
So, I switched to using,
@Id(generate=GeneratorType.IDENTITY)
so that it uses an identity column instead.
Not sure if that has anything to do with your problem or not. What I'm wondering is why it uses hi lo instead of identity as the default for auto?
Identity seems to work OK, at least if you specify it explicitly (with 3.0beta1 and annotations alpha1).
|
|