I have set the environment up and am using Sybase.
However when I run the ant eg I get the following table creation error.
All the other tables create fine. Any ideas?
DEBUG SchemaExport:149 - create table AuctionUser (
id NUMERIC(19,0) IDENTITY NOT NULL,
userName VARCHAR(255) not null,
[password] VARCHAR(255) null,
email VARCHAR(255) null,
firstName VARCHAR(255) null,
[initial] CHAR(1) null,
lastName VARCHAR(255) null,
primary key (id)
)
The [] around the password and initial columns is incorrect.
|