-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDatabase.java
52 lines (41 loc) · 1.11 KB
/
Database.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import java.util.*;
import java.io.*;
public class Database {
private String name;
public static String baseDir="C://";
//private HashMap tables;
private int numTables;
public Database(String name) {
this.name = name;
MetaData.update(name);
this.initDB();
// tables = new HashMap();
// create folder having the name name
}
public String getName() {
return name;
}
public int getNumTables() {
return numTables;
}
public Table createTable(String tName) {
// create a new file with the name tName in folder name
Table table = new Table(tName);
table.initTable();
MetaData.update(false,dName,tName);
return table;
}
public Table getTable(String tName) {
// returns a table with name tName from metadata
//return tables(tName);
return null;
}
public void initDB(){
File dir = new File(baseDir+name);
boolean isDirectoryCreated = dir.mkdir();
if(isDirectoryCreated)
System.out.println("Empty DB created successfully");
else
System.out.println("Empty DB was not created successfully");
}
}