Hi,
on the SearchEngine class there is a method called buildSql that has two overloads.
String buildSql(); and String buildSql(String);
I understand the first one, but what does the second one do?
Either bad documentation or a bug I guess:
The documentation says it returns string while in CRM Script it sets the variable to void.
The version with a string as parameter takes the following values:
selectinsertupdatedelete
In that way you can specify what kind of query you want get the result for.
Stian