13 case (STATEMENT_INSERT):
14 printf(
"This is where we would do an insert.\n");
16 case (STATEMENT_SELECT):
17 printf(
"This is where we would do a select.\n");
A parsed SQL statement ready for execution by the VM.
void execute_statement(Statement *stmt)
The "Virtual Machine": executes a compiled Statement.
Virtual Machine for executing compiled SQL statements.