Thinking of implementing a small database? I recommend SQLite. This is an embedded SQL database engine. Unlike most other SQL databases, has a low memory footprint. SQLite does not have a separate server process. It reads and writes directly to ordinary disk files. A complete SQL database with multiple tables, indices, triggers, and views, can be contained in a single disk file.
Sqlite has the following features
To get you started, First go to sqlite webpage here.
Next you download the binary file for your operating system.
Next you download the binary file for your operating system.
Open a command prompt from run in windows.
The output will display the record that was created.
In my next post I will introduce the sqlite manager.
Thanks for reading.