Can`t change database meta data with JPA
April 25, 08 by the programmerI wanted to try to change the column name or add/drop new column using Toplink Essentials but it seems that there is no way of doing that using JPA.
TopLink Essentials can only drop and create tables, while OpenJPA by default
only adds/removes columns if the table already exist.
So you cant change the structure of your database using JPA. You have to use native queries to that or you can use some of the database tools to do that for you
