mattsteele8
Registered User.
- Local time
- Today, 23:06
- Joined
- Mar 18, 2009
- Messages
- 11
hi,
i have a query which i have simplified for the purposes of fault finding which brings the error "the recordset is not updatable" whenever i try to change an item in the issues column. the sql query is below
SELECT tblSupportCalls.IDSupportCalls, Count(tblSupportCallsChild.IDSupportCallsChild) AS CountOfIDSupportCallsChild, tblSupportCalls.Issue
FROM tblSupportCalls INNER JOIN tblSupportCallsChild ON tblSupportCalls.IDSupportCalls = tblSupportCallsChild.IDSupportCalls
GROUP BY tblSupportCalls.IDSupportCalls, tblSupportCalls.Issue
ORDER BY tblSupportCalls.IDSupportCalls DESC;
i have googled for a bit but non of the suggestions apply or fixed it e.g. make sure the query is set to Dynaset and make sure there are no left joins
any help would be much appreciated
i have a query which i have simplified for the purposes of fault finding which brings the error "the recordset is not updatable" whenever i try to change an item in the issues column. the sql query is below
SELECT tblSupportCalls.IDSupportCalls, Count(tblSupportCallsChild.IDSupportCallsChild) AS CountOfIDSupportCallsChild, tblSupportCalls.Issue
FROM tblSupportCalls INNER JOIN tblSupportCallsChild ON tblSupportCalls.IDSupportCalls = tblSupportCallsChild.IDSupportCalls
GROUP BY tblSupportCalls.IDSupportCalls, tblSupportCalls.Issue
ORDER BY tblSupportCalls.IDSupportCalls DESC;
i have googled for a bit but non of the suggestions apply or fixed it e.g. make sure the query is set to Dynaset and make sure there are no left joins
any help would be much appreciated