Been off SC for a while and decided to convert my version 8 apps to 9, following the steps. Recompiled all the code and I have random errors all over the place.
A particularly vexing one is this: happening with my grids. An example, a grid running on the orders table which has the automatic lookup on ProductID
select ProductName from product where ProductID = {ProductID} order by ProductName
On v8, this correctly displays the name of the product but in v9, there is an SQL error. On examination, I find SC9 is attempting this.
select ProductName from product where ProductID = Pizza order by ProductName
i.e. it has somehow substituted ProductName for ProductID in the SQL.
This is so bewildering I don’t even know where to start.