Dave Wellman wrote: > Where can I download older versions of sqlite3, specifically v3.8.4.3 (or at > least v3.8.4.x). I don't need the source code, just the windows binaries.
It looks like we can hack the download URIs to get the version you want. Noting from the download page that the windows x86 binary is at http://www.sqlite.org/2014/sqlite-shell-win32-x86-3080500.zip we can try just altering the last few characters of that and get: http://www.sqlite.org/2014/sqlite-shell-win32-x86-3080403.zip which seems to work. An alternative is to download the source for your version right out of the version control system. Here is the version change history page: http://www.sqlite.org/changes.html You can use the "SQLITE_SOURCE_ID" from that history page and stick it into a URL like this: http://www.sqlite.org/src/info/<SQLITE_SOURCE_ID> e.g. in your case http://www.sqlite.org/src/info/a611fa96c4a848614efe899130359c9f6fb889c3 >From there, you can click the "ZIP Archive" link to get the source code. > I'll also need the docs. The docs don't get versioned like that AFAICT. There's just one central set of docs. If behavior changes from one version to the next, that is called out with text inside the documentation and in the change logs. Some of the more major changes have their own special pages in the docs. -- Eric A. Rubin-Smith _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

