I'd like to download a database compressed as a .gz file in a cordova application and extract it to create a local WEBSQL database.
Is this posible?
I have the need to do this because my app needs to work offline, besides that this database I have to sync is so big that is unthinkable to download it uncompressed.
This sync only happens one time in my app. So after that is not a big deal.
Thanks in advance!
PD: I'm currently downloading each table separately but it takes too long, the code is a mess with all the callbacks and stuff. A compressed file with all data would be much more helpful.