PostgreSQL vs SQLite
Learn what databases we are going to use and the difference between them.
We'll cover the following...
Why do we need a database
All of the important data in a web application must be saved and made available for all processes responding to client requests in the future. This ongoing availability is called data persistence. There are many options for persisting data. The data can be stored in a file or across files, or it can be stored in the memory and saved regularly. If ...