Closed GoogleCodeExporter closed 8 years ago
The problem is that quoted identifiers are case sensitive (lowercase here), and
unquoted identifiers are converted to uppercase.
The quoting is inconsistent, that means sometimes the table is quotes and
sometimes not:
-- not quoted
create table test(id int primary key, name varchar(255));
-- quoted
select * from [test];
Why don't you use:
create table [test](id int primary key, name varchar(255));
Original comment by thomas.t...@gmail.com
on 10 May 2012 at 7:48
I had already started down the workaround you suggested. In the end though the
gain's were outweighed by the pains. The legacy MSSQL database I was trying to
mimic is accessed via JPA and a whole bunch of hand crafted SQL.
Cheers.
Original comment by as.da...@gmail.com
on 10 May 2012 at 8:43
Original issue reported on code.google.com by
as.da...@gmail.com
on 27 Apr 2012 at 9:27