Hi,
Everytime I try to delete a record I get this error "Cannot update this query type". I am using D2010 Pro and Zeos Alpha.716.
Thanks.
Cannot update this query type
Moderators: gto, EgonHugeist, olehs
-
- Junior Boarder
- Posts: 25
- Joined: 10.10.2009, 18:57
-
- Junior Boarder
- Posts: 25
- Joined: 10.10.2009, 18:57
Have you solved this issue?
I noticed this error happened on my queries when they were UPPERCASED.
i.e., this will result in a readonly dataset:
... while this other piece of SQL code won't:
Kinda weird... But we were brave enough to become alpha-testers, you know.
Now I'm struggling with the codepages... Text in foreign languages won't display correctly in Delphi 2010 + ZeosLib 7... But in Delphi 6 + ZeosLib 6 it did.
I noticed this error happened on my queries when they were UPPERCASED.
i.e., this will result in a readonly dataset:
Code: Select all
SELECT * FROM Customer
ORDER BY CustomerCode ASC
Code: Select all
select * from customer
order by customercode asc
Now I'm struggling with the codepages... Text in foreign languages won't display correctly in Delphi 2010 + ZeosLib 7... But in Delphi 6 + ZeosLib 6 it did.