feat: added functionality for insert and select

This commit is contained in:
2026-07-22 01:46:52 +05:30
parent b2a61c66e4
commit c719848c25
2 changed files with 90 additions and 10 deletions
+6 -2
View File
@@ -38,8 +38,12 @@ func Run() {
continue
}
statement.ExecuteStatement(table)
fmt.Println("Executed")
switch statement.ExecuteStatement(table) {
case ExecuteSuccess:
fmt.Println("Executed.")
case ExecuteTableFull:
fmt.Println("Error: Table is full")
}
}
}