How can I create a insert trigger in sqlite? I should check if the number of rows is < 5 = ok. If the number of rows is 5 = delete first row.
Is this way of collecting garbage efficient?
How can I create a insert trigger in sqlite? I should check if the
Share
The documentation is quite good: http://www.sqlite.org/lang_createtrigger.html
You should end up with something like