in reply to Re: DBD::SQLite bulk insert woes
in thread DBD::SQLite bulk insert woes

No it doesn't. You're confusing disk writes with commits which are actually quite different things. I would suggest reading this, this and this articles to gain better understanding of how SQLite transactions and disk writes work.

In this case it doesn't matter anyway because the database is held in memory and there is no delay due to disk. It's a test focused on DBD::SQLite performance rather than SQLite itself.

Regards,
Alex.