create_table
Function: add_table
add_table
The add_table
function is responsible for creating a new table within the currently opened database. A table in Q.I.C is represented by a file with the .table
extension, and its structure is defined by a schema mapping column names to their corresponding data types.
Declaration
Parameters
name
(std::string
) The name of the table to be created. This will also determine the file name of the table (e.g.,users.table
for a table namedusers
).content
(std::unordered_map<std::string, data_type>
) A map defining the schema of the table. The key represents the column name, and the value represents the column's data type, which can be one of the following:BOOL
INT
DOUBLE
FLOAT
STRING
Example
Last updated