Hello,
we have a problem in 3.5 with a method like that
var vDataset = databaseManager.convertToDataSet(pkValue);
controller.loadRecords(vDataset)
pkValue is an integer (primary key). This worked fine in Servoy < 3.5. 3.5 converts the pkValue to a double and the SQL engine complains about that.
A fix is to provide
databaseManager.convertToDataSet([pkValue]);
Or
databaseManager.convertToDataSet(pkValue + '');