0
Not a bug
SQL Server Model with column name of Order adds quotes
When adding a table for SQL Server and with a column name of Order, the generated SQL incorrectly adds quotes around the column name:
The generated SQL should be using brackets:
I haven't tried other key words; if you fix this, I'd suggest testing other key words as well.
Thanks!
-- tables-- Table: OrderTest CREATE TABLE OrderTest ( "Order" int NOT NULL, Value varchar(250) NOT NULL ) ;
The generated SQL should be using brackets:
-- tables-- Table: OrderTest CREATE TABLE OrderTest ( [Order] int NOT NULL, Value varchar(250) NOT NULL ) ;
I haven't tried other key words; if you fix this, I'd suggest testing other key words as well.
Thanks!
Customer support service by UserEcho
Let's us know what did you found.