-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.rb
133 lines (123 loc) · 3.59 KB
/
database.rb
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
require 'sqlite3'
class DBHandler
def initialize
begin
db = SQLite3::Database.open "student.db"
dbstatement = "CREATE TABLE IF NOT EXISTS Students(id INTEGER PRIMARY KEY, FirstName TEXT, LastName TEXT, Email TEXT, Major TEXT, Status TEXT);"
db.execute dbstatement
rescue SQLite3::Exception => e
puts "Exception Occurred"
puts e
ensure
db.close if db
end
end
def create(fname, lname, email, major, status)
begin
db = SQLite3::Database.open "student.db"
dbstatement = "INSERT INTO Students(FirstName, LastName, Email, Major, Status) VALUES('#{fname}', '#{lname}', '#{email}', '#{major}', '#{status}');"
db.execute dbstatement
rescue SQLite3::Exception => e
puts "Exception Occurred"
puts e
ensure
db.close if db
end
end
def all
begin
db = SQLite3::Database.open "student.db"
dbstatement = "SELECT * FROM Students;"
db.execute dbstatement
rescue SQLite3::Exception => e
puts "Exception Occurred"
puts e
ensure
db.close if db
end
end
def all_enrolled
begin
db = SQLite3::Database.open "student.db"
dbstatement = "SELECT * FROM Students WHERE Status='Enrolled';"
db.execute dbstatement
rescue SQLite3::Exception => e
puts "Exception Occurred"
puts e
ensure
db.close if db
end
end
def all_graduated
begin
db = SQLite3::Database.open "student.db"
dbstatement = "SELECT * FROM Students WHERE Status='Graduated';"
db.execute dbstatement
rescue SQLite3::Exception => e
puts "Exception Occurred"
puts e
ensure
db.close if db
end
end
def get(id)
begin
db = SQLite3::Database.open "student.db"
dbstatement = "SELECT * FROM Students WHERE Id='#{id}';"
db.execute dbstatement
rescue SQLite3::Exception => e
puts "Exception Occurred"
puts e
ensure
db.close if db
end
end
def get_enrolled(id)
begin
db = SQLite3::Database.open "student.db"
dbstatement = "SELECT * FROM Students WHERE Id='#{id}' AND Status = 'Enrolled';"
db.execute dbstatement
rescue SQLite3::Exception => e
puts "Exception Occurred"
puts e
ensure
db.close if db
end
end
def get_graduated(id)
begin
db = SQLite3::Database.open "student.db"
dbstatement = "SELECT * FROM Students WHERE Id='#{id}' AND Status = 'Graduated';"
db.execute dbstatement
rescue SQLite3::Exception => e
puts "Exception Occurred"
puts e
ensure
db.close if db
end
end
def update(id, fname, lname, email, major, status)
begin
db = SQLite3::Database.open "student.db"
dbstatement = "UPDATE Students SET FirstName='#{fname}', LastName='#{lname}', Email='#{email}', Major='#{major}', Status='#{status}' WHERE Id='#{id}';"
db.execute dbstatement
rescue SQLite3::Exception => e
puts "Exception Occurred"
puts e
ensure
db.close if db
end
end
def destroy(id)
begin
db = SQLite3::Database.open "student.db"
dbstatement = "DELETE FROM Students WHERE Id='#{id}';"
db.execute dbstatement
rescue SQLite3::Exception => e
puts "Exception Occurred"
puts e
ensure
db.close if db
end
end
end