Hi
Thank you for reading my post.
I am using JPA and I am using the follwing notation for my key field.
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
problem is that records in the database do not have correctly sequenced ID
values. for exaple the first record is 3 and the second record is 53, is
there any way that I can fix it?
My database is MySQL and I am using Toplink Essential.
Thanks.