Hibernate without Primary Key -
i making sample application hibernate. requirement there no primary key on table. had select query application. know there should primary key, table referring has been made without it.
it has 50k records. so, modifying table add id column not see viable option.
can possible?
- hibernate requires entity tables have primary keys. end of story.
- 50k records not many when you're talking database.
my advice: add autoincrement integer pk column table. you'll surprised @ how fast is.
Comments
Post a Comment