I finally got schemaExport to work...
Here is the problem I was having...
I was creating a User table and MS SQL Server was choking with this error...
Code:
[main] ERROR net.sf.hibernate.tool.hbm2ddl.SchemaExport - Unsuccessful: create table User (id VARCHAR(27) not null, username VARCHAR(255) null, firstName VARCHAR(255) null, middleName VARCHAR(255) null, lastName VARCHAR(255) null, email VARCHAR(255) null, passwordHint VARCHAR(255) null, primary key (id))
[main] ERROR net.sf.hibernate.tool.hbm2ddl.SchemaExport - [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Incorrect syntax near the keyword 'User'.
I couldn't figure it out until I changed the table name. Is that because 'User' is a reserved word for Microsoft SQL Server?
Thanks!
--
Nathan