Thank you for this (as usual) wonderful library ! :)
I think i have spotted a memory leak in sqlite3 driver.
When a lot of queries are performed the memory usage of the system
keeps growing.
Seems that this was related to the fact that the driver did not not
called "finalize-statement" before. I have added a few of this forms
and at least the problem has been reduced a lot.
Tested (and works OK after this patch i.e. no memory leaks) with a million of "SELECTs" on a file database.
Hello!
Thank you for this (as usual) wonderful library ! :)
I think i have spotted a memory leak in sqlite3 driver.
When a lot of queries are performed the memory usage of the system keeps growing.
Seems that this was related to the fact that the driver did not not called "finalize-statement" before. I have added a few of this forms and at least the problem has been reduced a lot.
Tested (and works OK after this patch i.e. no memory leaks) with a million of "SELECTs" on a file database.
Bye! C.