Skip to content

Instantly share code, notes, and snippets.

@pankaj-gecko
Created November 20, 2021 21:50
Show Gist options
  • Save pankaj-gecko/1bf140fc1e2a5a39e1c3960953c9942a to your computer and use it in GitHub Desktop.
Save pankaj-gecko/1bf140fc1e2a5a39e1c3960953c9942a to your computer and use it in GitHub Desktop.
SQLITE network connection
As we know SQLITE is a minimalistic database and one of its limitation is that it isn't a network Database.
I was experimenting with cookie files by help of firefox browser on my linux build. Firefox uses SQLITE
for storing cookies on client machine. But it is reasonable that server receives the cookie information
(domain specific) from the client but since the database is SQLITE which is not a network based database
then how does it works when on the first hand it doesn't has network connection functionality?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment