Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can one find source archives of old SQLite versions?

Tags:

The downloads page on www.sqlite.org appears to only have links to the current version, and I would like to get a previous version. I cannot see any obvious links to historical versions on the site and (unless I'm missing something obvious) there does not appear to be a sourceforge project.

Can someone point me at an archive of old SQLite source releases if such a thing exists?

Nigel.

like image 406
ConcernedOfTunbridgeWells Avatar asked Mar 05 '09 15:03

ConcernedOfTunbridgeWells


People also ask

How do I find SQLite database version?

If you have a data connection to it in Visual Studio, you can right click on the data base in Server Explorer, select properties, and the version will be shown in the properties window, (under Version, surprisingly). You might need to left click the database first to open it.

Is SQLite an open source database?

SQLite is open-source, meaning that you can make as many copies of it as you want and do whatever you want with those copies, without limitation.

What is SQLite amalgamation?

The amalgamation contains everything an application needs to embed SQLite. Combining all the code for SQLite into one big file makes SQLite easier to deploy — there is just one file to keep track of.

What is the current version of SQLite?

2020-01-20 - Release 3.34. SQLite version 3.34. 1 is a patch releases that fixes a possible use-after-free bug that can be provoked by malicious SQL.


1 Answers

I found this in their old message list archives. Hopefully this helps:

Older version of SQLite are aviable from the website, but there are no direct links on the web pages. You need to manually edit the links to get the file you need.

The 2.1 version of the database file implies that it was created with a 2.X.Y version of SQLite. You should get the latest version which is 2.8.17 (I believe).

If you go the download page http://www.sqlite.org/download.html and the right click on the link to download the latest Windows binary file, then

select Copy Link Location (at least using Firefox, in IE the command is Copy Shortcut). Now open a new tab or window and paste the link into the

address bar. You can edit the link and replace the version number with the version you want to download. In your case you need to change http://www.sqlite.org/sqlitedll-3_5_6.zip to http://www.sqlite.org/sqlitedll-2_8_17.zip and then press enter to start

like image 167
Dillie-O Avatar answered Nov 09 '22 06:11

Dillie-O