Can sqlite read gzipped databases?

2007-03-20 Thread Paul Smith
Hi, I'd like to read a series of sqlite database files that have already been gzipped and was wondering if this can be done on the fly. In other words, can I avoid explicitly unzipping the file into another file, but instead get an SQL connection to the zip file either directly (can't see an

Re: Can sqlite read gzipped databases?

2007-03-20 Thread John Nagle
Gzipped files aren't a good random access medium. It's unlikely that anyone will implement this. John Nagle Paul Smith wrote: Hi, I'd like to read a series of sqlite database files that have already been gzipped and was wondering if this can be done on