2021-05-17, 21:34
(2021-05-17, 17:45)kenmills Wrote: It identifies the paths to delete no worries, but then fails to delete them.
Ah, in that case it might have something to do with the way it changes from the SELECT statement to the DELETE statement. Because it has to work with both MySQL and SQLite I seem to recall it was a little tricky at first to get it to format a command that both db types could use. There are some slight differences between the syntax of the two. There are also things you can do in SQLite that won't work in MySQL and vice-versa. As it can produce it's own debug log, you should be able to look in there to see the commands that were executed and then try them in the db's interface to see what results that gives. Probably returns a set of zero items if it's not deleting something where the SELECT statement does return a set.