0
`delete select …` blocks the app
iOS App Version 3.19.12
The "Button" button has the following command in its "on Click" event:
```
delete select 'Ernährungsprotokoll' where not Futtermittel
```
After the event is triggered, the app freezes and continuously displays a spinner.
2 replies
-
I would try the select on its own, and see if that hangs. How many records does it return?
Also try a delete select on a small test table, and maybe split the command into two lines and delete a few records at a time, repeating until all the records have gone
let a := select 'Ernährungsprotokoll' where not Futtermittel; delete slice(a, 0, 10)Regards John
Content aside
- 3 days agoLast active
- 2Replies
- 28Views
-
2
Following
