|
|
|
|
|
by TekMol
1761 days ago
|
|
As a developer, I have to say that sqlite gives me the best experience. Everything else pales in comparison. Create a database? sqlite3 mydata.db
Where is the database? In the current directory
How is it structured on disk? It's a single file
How do I backup the DB? cp mydata.db /my/backups/mydata.db
Do I have to install a server? No
Do I have to configure anything? No
During setup and deployment I usually I dabble a while with the whole GRANT *.* ON localhost IDENTIFIED BY PASSWORD or something. How do I do that with sqlite? It just works
Do I have to close / protect any specific ports? No, it's just a file
Which field types should I use for ... ? None. It just works.
|
|