It's possible to use string value in a Query?
I have this code in my Form init method:
container con;
select myTable
where myTable.MyFIeld == conPeek(con, 1);
//I would like to fill my stringEditControl
StringEdit.text(strFmt('%1', myTable.MyFIeld));
I have an error look like this:
"The fields of type string container and unconstrained are not allowed in the WHERE expression."
How can I use the value string or container (in this case) in a query?
Thanks for your time,
enjoy!