Ah, good. That log is much clearer (and illustrates the need for us to improve that gateway console- something that's been on the to-do list for a bit now).
Anyhow, from the log we see this:
Quote:
Error running query "SELECT name FROM syscolumns WHERE id = 1125579048 AND name LIKE '%Running'".
Unknown typecode: -9
It appears that the "name" column is being returned as a data type that we don't currently handle. This will be fixed for the next update. In the meantime, you can get around this by changing your query to cast the return to a supported type, such as:
Code:
SELECT cast(name as varchar) FROM syscolumns WHERE id = 1125579048 AND name LIKE '%Running
Regards,