-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.cs
171 lines (141 loc) · 4.76 KB
/
Form1.cs
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Bunifu.UI.WinForms;
using Oracle.ManagedDataAccess.Client;
using static System.Windows.Forms.VisualStyles.VisualStyleElement;
namespace Database_Project_SEM_
{
public partial class Form1 : Form
{
OracleConnection con;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
string conStr = @"DATA SOURCE=localhost:1521/xe;USER ID=f219298;PASSWORD=123";
con = new OracleConnection(conStr);
}
public void checkemailstudent()
{
con.Open();
OracleCommand getstudent = con.CreateCommand();
getstudent.CommandText = "SELECT * FROM student WHERE email=:email AND password =:password";
getstudent.Parameters.Add("email", OracleDbType.Varchar2).Value = bunifuTextBox1.Text;
getstudent.Parameters.Add("password", OracleDbType.Varchar2).Value = bunifuTextBox2.Text;
getstudent.CommandType = CommandType.Text;
int count = 0;
using (OracleDataReader reader = getstudent.ExecuteReader())
{
while (reader.Read())
{
count++;
// You can access the columns of the current row using the
// indexer or the GetXXX() methods of the reader object.
}
}
if (count > 0)
{
Form2 form2 = new Form2();
form2.emailtext = bunifuTextBox1.Text;
this.Hide();
form2.Show();
form2.GetStudentByEmail();
}
else
{
MessageBox.Show("Your Password or Email is Incorrect");
}
con.Close();
}
public void checkemailteacher()
{
con.Open();
OracleCommand getteacher = con.CreateCommand();
getteacher.CommandText = "SELECT * FROM teacher WHERE email=:email AND password =:password";
getteacher.Parameters.Add("email", OracleDbType.Varchar2).Value = bunifuTextBox1.Text;
getteacher.Parameters.Add("password", OracleDbType.Varchar2).Value = bunifuTextBox2.Text;
getteacher.CommandType = CommandType.Text;
int count = 0;
using (OracleDataReader reader = getteacher.ExecuteReader())
{
while (reader.Read())
{
count++;
}
}
if (count > 0)
{
Form3 form3 = new Form3();
form3.emailtext1 = bunifuTextBox1.Text;
this.Hide();
form3.Show();
}
else
{
MessageBox.Show("Your Password or Email is Incorrect");
}
con.Close();
}
private void label1_Click_1(object sender, EventArgs e)
{
}
private void label2_Click(object sender, EventArgs e)
{
}
private void bunifuButton1_Click(object sender, EventArgs e)
{
this.Close();
}
private void tabPage1_Click(object sender, EventArgs e)
{
}
private void bunifuTextBox1_TextChanged(object sender, EventArgs e)
{
string studentId = bunifuTextBox1.Text;
}
private void bunifuPictureBox1_Click(object sender, EventArgs e)
{
}
private void bunifuGradientPanel1_Click(object sender, EventArgs e)
{
}
private void bunifuButton2_Click(object sender, EventArgs e)
{
if (bunifuTextBox1.Text.Substring(0, 1) == "s")
{
checkemailstudent();
}
else if (bunifuTextBox1.Text.Substring(0, 1) == "t")
{
checkemailteacher();
}
else if (bunifuTextBox1.Text=="admin"&& bunifuTextBox2.Text=="123")
{
Form4 form4 = new Form4();
this.Hide();
form4.Show();
}
else {
MessageBox.Show("INVALID INFORMATION");
}
}
private void label4_Click(object sender, EventArgs e)
{
}
private void bunifuTransition1_TransfromNeeded(object sender, Bunifu.UI.WinForms.BunifuTransition.TransfromNeededEventArg e)
{
}
private void bunifuTransition1_AllAnimationsCompleted(object sender, EventArgs e)
{
}
}
}