You are not logged in.
Pages: 1
With a TSQLTable made from the SQL statement below using TSQLRestClientURI.ExecuteList sorting fails on the authors.name field (using a TSQLTableToGrid). Tracing through the code it seems TSQLTable.InitFieldTypes sets this field's type to sftID instead of sftUTF8Text which is the defined type of authors.name. I guess this is because authors.name is referred to by an record id. Is sorting on a joined field implemented yet or am I going about it the wrong way?
Select books.title, authors.name from books left join authors on books.author=authors.ID
Offline
Pages: 1