![]() |
Sergey Kornilov admin 4/14/2016 |
This can be done and a bit of coding will be required.
|
![]() |
bbarker author 4/15/2016 |
Yep, that's exactly how I was working on it. Thanks. I'll let you know how it turns out. |
![]() |
bbarker author 4/25/2016 |
Having a problem with EDIT |
![]() |
Sergey Kornilov admin 4/26/2016 |
As far as I understand your SQL Query contains fields from multiple tables. You need to make sure none of fields from joined tables is making it to update SQL query. unset($values["id_vol"]);
|
![]() |
bbarker author 4/27/2016 |
The unknown column problem was solved by Alexey (THANKS!). I'll post it here for others who have a similar issue: To get the Edit page issue fixed, remove the t4 alias from your SQL query. The main table - the table that you update - must appear without an alias in the SQL query. Otherwise PHPRunner doesn't know how to update your fields. I.e instead of LEFT OUTER JOIN volunteer AS t4 ON t1.idmember_met = t4.idmember_vol you should have LEFT OUTER JOIN volunteer ON t1.idmember_met = volunteer.idmember_vol |