[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[News.eclipse.technology.eclipselink] Re: Using Microsoft Acces

The issues is the EclipseLink MS Access platform does not support identity sequencing. You need to use table sequencing.

i.e.
@GeneratedValue(strategy = GenerationType.TABLE)

In general I would recommend table sequencing over identity sequence even on MySQL as it support pre-allocation.

-- James