
One of our clients pointed out that they can no longer add a user. This seems to be because we have a table called 'user' which I assume is a special sql name as well, but the automatic generation of sql for the update, insert, and delete, doesn't seem to encode the table name.
MSSQL profiler shows that it has been sent through as User without doing [user] for example
exec sp_executesql N'UPDATE User
SET
Description = @P1, Notes = @P2
WHERE
ID = @P3', N'@P1 varchar(12),@P2 varchar(1),@P3 int', 'asdfasdf3333', NULL, 10
This creates an error....
Is there any properties I can set that will solve this?
We are basically doing a SELECT * FROM USER query for our grid, and then inserting/deleting/updating into the resulting TMSQuery dataset via the dx grid.
Thanks,
Toni