Please enable JavaScript.
Coggle requires JavaScript to display documents.
Section 27: Database, In order to use Postgres we need to create a…
Section 27: Database
307: Introduction
-
-
We Saw last time how hard it was to have our server remember a new user, Every time the server crashed - The Variable would get rest and than it would start all over.
Or If we wanted to do a login or a signing check and iterate through the emails and passwords, doing a loop through javascript that's inefficient
-
A database is a collection of data and what we mean by data - There are many forms of them right- there can be numbers, dates, password hashes, user information.
Database allows us to organise this data in a way that is useful to us and it make data management easy which we called database management System (DBMS)
It is a collection of programs which allows us to access databases and work with data. And it also allows controlled access to database users.
So DBMS is a tool or piece of software that allows us to communicate with the database, store information that is useful for us and also allows us to update , insert, delete, look up whatever in the database.
There are 2 types of Database that are really popular and these are represented really well by Postgres and MongoDB
Postgres
Relational database, other example :- Oracle, SQL, MySQL, SQLite
-
-
-
-
-
-