In version 7 this was easy. You just did %myVar:=%SelectSQL("SELECT * FROM eUSER where eUserName = '%User.Name') and you got a tab delimited list of all the columns in the table for the current user. You could do this on any table.
Is there a way to achieve the same in V9? I've tried Local.myVar = SelectSql(new MetastormDefault(),"SELECT * FROM eUser Where eusername = '" + ProcessContext.UserName + "'"), but I get a single string of text, not a delimited list.
Thanks in advance, Rob.