OEM enhancing

#1

Hello,

I have question regarding OEM licence enhancement.

@OneToMany(fetch = FetchType.EAGER, cascade = CascadeType.ALL)
 private SomeClass[] props;

@OneToMany(fetch = FetchType.EAGER, cascade = CascadeType.ALL)
    private Map<String, SomeClass2> vars = new TreeMap<String, SomeClass2>();

Are these classes(SomeClass, SomeClass2), when not enhanced, limited by number 1 million instances in DB?

Thanks

Marta

 

#2

If SomeClass and SomeClass2 are entity classes they should be enhanced to avoid the restriction of one million instances in the database (on end user machines).

ObjectDB Support

Reply