Skip to main content

Posts

Showing posts from July 15, 2021

Data Persistence SQL & Express

WEB43 - 4.2 - Adding Data Persistence WEB43 - 4.2 - Adding Data Persistence A database is a collection of data organized for easy retrieval and manipulation . We're concerned only with digital databases, those that run on computers or other electronic devices. Digital databases have been around since the 1960s. Relational databases, those which store "related" data, are the oldest and most common type of database in use today. Data Persistence A database is often necessary because our application or code requires data persistence. This term refers to data that is infrequently accessed and not likely to be modified. In less technical terms, the information will be safely stored and remain untouched unless intentionally modified. A familiar example of non-persistent data would be JavaScript objects and arrays, which reset each time the code runs. Relational Databases In relational databases, the data is stored in tabular format grouped into rows and columns (similar to sp