SQLite Forum

SQLite on 64 Bit windows machine
Login

SQLite on 64 Bit windows machine

(1) By anonymous on 2020-03-18 17:58:20 [link] [source]

Can SQLite be installed in 64-bit windows machine?

(2) By Warren Young (wyoung) on 2020-03-18 18:21:12 in reply to 1 [link] [source]

Yes.

My speculation is that the reason there is not a 64-bit Windows exectuable on the download page is that it's hard to justify the time it would take to build and test it for each release given that SQLite's largest data structure (i.e. max BLOB size) is 2 GB maximum.

Therefore, what would you expect to get from a 64-bit executable over the provided 32-bit EXE? It'll work fine as-is.

If you believe you have an application where a 64-bit EXE matters, you can build SQLite from source.

(3) By anonymous on 2020-03-18 19:52:00 in reply to 2 [source]

Thank you.