Is there any memory leak in the normal routine of sqlite3_*()?
- by reer
A normal routine of sqlite3_prepare_v2() + sqlite3_step() + sqlite3_finalize() could contain leak.
It sound ridiculous. But the test code seems to say it. Or I used the sqlite3_*() wrongly.
Appreciate for any reply.
__code________________________
include
include // for usleep()
include
int multi_write (int j);
sqlite3 *db = NULL;…