Sure, but it really depends on what you want to do.
- Do you want Hibernate to create the schema for your Application?
http://www.hibernate.org/hib_docs/core/ ... etguide-s1
- Do you want to execute arbitrary DLL? Just use JDBC
http://www.jroller.com/rajasekar/entry/ ... n_from_jpa
- I guess you also could create Objects representing the tables (not the content) thus a flush would result in a create table / alter table / drop table instead of insert /update /delete. I'll simple assume you don't want to do that since I currently don't know where to find information about such an aproach