-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Description
This is what happens when I try to delete this entry,
SELECT COUNT() FROM (SELECT _rowid_
, FROM Instances
ORDER BY name
DESC);
SELECT _rowid_
,* FROM Instances
ORDER BY name
DESC LIMIT 0, 50000;
SELECT COUNT() FROM (SELECT _rowid_
, FROM Instances
ORDER BY name
ASC);
SELECT _rowid_
,* FROM Instances
ORDER BY name
ASC LIMIT 0, 50000;
DELETE FROM Instances
WHERE _rowid_
=0;
SELECT COUNT() FROM (SELECT _rowid_
, FROM Instances
ORDER BY _rowid_
ASC);
SELECT _rowid_
,* FROM Instances
ORDER BY _rowid_
ASC LIMIT 0, 50000;
nothing is deleted...even in edit mode clearing the cell does nada. The row in question is empty yes, but still has an id (type of data currently in cell: text /numeric 10 char(s)) so I want it gone, seem impossible =/ actually nothing can be saved to these entries it seems???
Sorting is also reset after "delete record" is pressed, very annoying =)