I don’t understand how storage works in the real work nor with computers. This is impeding me from being productive.
I was trying to create a small storage system of my own, but could not understand which functions could handle storage. So, how exactly can I replicate a system similar to those in the basic local file system? Something like c++ might work, but the procedures are unclear to me.
In: Technology
Computer storage is either done as a file, maybe something like an XML file where you can store fields and values such you might use to store something like user settings for a game or an application, or for larger data storage we would tend to use a database, which is made up of tables (rows and columns) and shows fields, values and how they relate to each other.
A common way of interacting with a database is through Structured Query Language (SQL), where you can write Queries that will perform functions on your data, such as Read the data or Update the data, or even change the structure of the database by adding or removing tables and fields.
Latest Answers