Hello everybody.
This is the first time i use eclipselink and i would like to know if i this plus JPA can create automatically a column into the database.
I mean:
class persona{
int id;
String name;
}
etc...(i haven't set the @stuff)
I want to know, if i modify this class (for, example adding a new field, eclipselink+JPA will modify my table or i have to use "alter table" methods.
I tried to do, but i'm receiving :
"Column DNI not found; SQL statement:" error.