save
Function: save
save
The save
function ensures that all in-memory changes made to the database are persisted to disk. It updates the .table
files for each table with the current state of their records and schema, making the changes permanent.
Declaration
Functionality
Iterates Through Tables The function loops through all tables registered in the
tables
map.Retrieves Table Schema It uses the
get_table_content_header
method to extract the schema (header) of each table, which defines the column names and their corresponding data types.Appends Records to the Table File For each table:
Existing file content is read and preserved up to the header.
New records are appended to the file in a structured format, enclosed by square brackets (
[ ... ]
).
Type-Safe Serialization Each record's values are serialized into the correct format based on their data type (
INT
,DOUBLE
,FLOAT
,BOOL
,STRING
). Sensitive data (e.g., strings) is compressed before being written.Writes Back to the File After constructing the updated content, the function writes it back to the
.table
file in the database directory.
Notes
The database must be open for this function to work. If the database is not open, the function will not execute.
This function modifies the
.table
files directly in the temporary working directory.Compression is applied to
STRING
data for security purposes, reducing the risk of database compromise.The
save
function does not affect other database files; it strictly operates on.table
files.
Example
Here’s a simple demonstration of how to use the save
function:
Last updated