Hello,
I use schemaExport to generate my sql file and it works fine. A part of my output looks like this
Code:
create table WebOfferRequestParamsTable (
ID int not null,
webProbeID int not null,
....
problem is, when I excute this file with the ant task sql, everything is coverted into uppercases in the dataBase. In order to have the case preserved in th dataBase I need to have names quoted in the sql file, like the following
Code:
create table "WebOfferRequestParamsTable" (
"ID" int not null,
"webProbeID" int not null,
....
is there a way to make schemaExport generate my sql file with quotations included ?
thanks