When I create a 'simple' recordset in UD4 from a table in a SQL database, the dialog box shows all the tables listed as '88user.tablename'. (88user being the SQL username).When I try to use the recordset (or test it) I get a 'syntax error near 88'
I found if I remove the username prefix from the SQL command string everything works. Where have I screwed up to cause that prefix to appear, or alternatively, where have I screwed up to cause SQL server to grumble that the prefix is there.
Here's a picture---
When UD builds ny SQL string it goes:
SELECT this, that FROM user.table
which fails.
When I change it to:
SELECT this, that FROM table
it works. So why is that user prefix showing up?
thanks
Doug
I found if I remove the username prefix from the SQL command string everything works. Where have I screwed up to cause that prefix to appear, or alternatively, where have I screwed up to cause SQL server to grumble that the prefix is there.
Here's a picture---
When UD builds ny SQL string it goes:
SELECT this, that FROM user.table
which fails.
When I change it to:
SELECT this, that FROM table
it works. So why is that user prefix showing up?
thanks
Doug