Just wondered if anybody knew why Ultradev changes your SQL statement by generating a replace function for a variable when creating a recordset, e.g:
WHERE (tblLkpAreaManager.RegionID LIKE '" + Replace(rsList__varRegion, "'", "''"
+ "')
It doesn't cause any problems except when using a list e.g:
IN ('A','B','C'). It's not as problem to remove it (except that the Ultradev Data Bindings then shows an error), but what is it for and is there any way to stop it?
WHERE (tblLkpAreaManager.RegionID LIKE '" + Replace(rsList__varRegion, "'", "''"
It doesn't cause any problems except when using a list e.g:
IN ('A','B','C'). It's not as problem to remove it (except that the Ultradev Data Bindings then shows an error), but what is it for and is there any way to stop it?