Which of the following should I be running right before calling
sqlite3_close?

while(stmt = sqlite3_next_stmt(db, stmt))
        sqlite3_finalize(stmt);

while(stmt = sqlite3_next_stmt(db, NULL))
        sqlite3_finalize(stmt);

I am not sure which will have the desired effect.
-- 
Programming today is a race between software engineers striving to build
bigger and better idiot-proof programs, and the Universe trying to produce
bigger and better idiots. So far, the Universe is winning.  - Rich Cook
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to