Created
November 20, 2021 21:50
-
-
Save pankaj-gecko/1bf140fc1e2a5a39e1c3960953c9942a to your computer and use it in GitHub Desktop.
SQLITE network connection
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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