tinySQL  0.1
A self-contained database management system
main.cpp
1 //
2 // Created by luke on 22-6-2.
3 //
4 
5 #include "share/config.h"
6 #include "API/interface.h"
7 #include "fstream"
8 #include <iostream>
9 #include <filesystem>
10 
11 std::string create_table_query = "CREATE TABLE student "
12  "(id char(8), "
13  "name char(10), "
14  "age int, "
15  "score double, "
16  "primary key (id));";
17 
18 std::string drop_query = "DROP TABLE student;";
19 
20 std::string select_query = "SELECT student.name "
21  "FROM student "
22  "WHERE student.name = 'John' "
23  "and student.age > 30 "
24  "and student.teacher = 'Cathy';";
25 
26 std::string delete_query = "DELETE FROM students WHERE age between 20 and 30;";
27 
28 std::string create_index_query = "CREATE INDEX name_id on student(name);";
29 
30 std::string insert_query = "INSERT INTO student(id, name, age)"
31  "VALUES('12789', 'Newman', 20);";
32 
33 std::string update_query = "update student set name = 'John' where name = 'Cathy';";
34 
35 void build_tiny_sql_folders(){
36  if (!std::filesystem::is_directory(PATH::DATA_PATH)){
37  std::filesystem::create_directory(PATH::DATA_PATH);
38  }
39  if (!std::filesystem::is_directory(PATH::RECORD_PATH)){
40  std::filesystem::create_directory(PATH::RECORD_PATH);
41  }
42  if (!std::filesystem::is_directory(PATH::INDEX_PATH)){
43  std::filesystem::create_directory(PATH::INDEX_PATH);
44  }
45  if (!std::filesystem::is_directory(PATH::CATALOG_PATH)){
46  std::filesystem::create_directory(PATH::CATALOG_PATH);
47  }
48 }
49 
50 int main()
51 {
52  build_tiny_sql_folders();
53  Interface anInterface(std::cin, std::cout);
54  anInterface.run();
55 }
Interface
The interface of the entire database.
Definition: interface.h:16