EDITED: ANSWER TO THE QUESTION
To the conversion
- Go to http://www.sqlite.org/download.html
- Download sqlite-dll file (which stays in Precompiled Binaries For Windows)
- Unpack it and copy to C:\Windows\System32 folder
What are the differences? (quoted from PHP - SQLite vs SQLite3)
- SQLite2 internally stores every value as a string, regardless of its type.
- Upgrading to SQLite3 will certainly shrink the database size since numbers and BLOBS get stored in their native formats, which could make things run faster.
- starting from 3.6.23 version it supports foreign keys.