-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJdbcApp2.java
224 lines (179 loc) · 5.25 KB
/
JdbcApp2.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
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Scanner;
public class JdbcApp2
{
public static void main(String args[]) throws SQLException
{
int option=0;
while(option!=5)
{
System.out.println("Select the operation");
System.out.println("-------------------");
System.out.println("1. select");
System.out.println("2. insert ");
System.out.println("3. update");
System.out.println("4. Delete");
System.out.println("5. Exit");
System.out.println("-------------------");
System.out.println("Enter your choice");
Scanner scanner=new Scanner(System.in);
option=scanner.nextInt();
if(option==1)
{
Connection connection=null;
Statement statement=null;
ResultSet resultSet=null;
try
{
String url ="jdbc:mysql://localhost:3306/School";
String usr ="root";
String password = "Root@123";
connection=DriverManager.getConnection(url,usr,password);
if(connection!=null)
{
statement = connection.createStatement();
if(statement!=null)
{
String sql="select * from Student";
resultSet = statement.executeQuery(sql);
if(resultSet!=null)
{
System.out.println("Sid"+" "+"sname"+" "+"Sub"+" "+"marks");
while (resultSet.next()) {
int sid =resultSet.getInt("Sid");
String name = resultSet.getString("Sname");
String sub =resultSet.getString("Subject");
int marks = resultSet.getInt("Marks");
System.out.println(sid+" "+name+" "+sub+" "+marks);
}
}
}
}
}catch (Exception e) {
e.printStackTrace();
}
finally {
resultSet.close();
statement.close();
connection.close();
}
}else
if(option==2)
{
Connection connection=null;
Statement statement=null;
try
{
String url ="jdbc:mysql://localhost:3306/School";
String usr ="root";
String password = "Root@123";
connection=DriverManager.getConnection(url,usr,password);
if(connection!=null)
{
statement = connection.createStatement();
if(statement!=null)
{
String name="";
String subject ="";
int marks=0;
System.out.println("enter name");
name= scanner.next();
System.out.println("enter subject");
subject = scanner.next();
System.out.println("enter marks");
marks= scanner.nextInt();
name="'"+name+"'";
subject="'"+subject+"'";
String sql = String.format("insert into student(Sname,subject,Marks) values(%s,%s,%d)",name,subject,marks);
int n=statement.executeUpdate(sql);
System.out.println("Number of rows updated:"+n);
}
}
} catch (Exception e) {
e.printStackTrace();
}
finally {
statement.close();
connection.close();
}
}
else
if(option==3)
{
Connection connection=null;
Statement statement=null;
try
{
String url ="jdbc:mysql://localhost:3306/School";
String usr ="root";
String password = "Root@123";
connection=DriverManager.getConnection(url,usr,password);
if(connection!=null)
{
statement = connection.createStatement();
if(statement!=null)
{
System.out.println("enter sid");
int sid= scanner.nextInt();
System.out.println("enter marks");
int marks= scanner.nextInt();
String sql=String.format("update student set marks=%d where sid=%s",marks,sid);
int n=statement.executeUpdate(sql);
System.out.println("Number of rows updated:"+n);
}
}
}
catch (Exception e) {
e.printStackTrace();
}
finally {
//resultSet.close();
statement.close();
connection.close();
}
}else
if(option==4)
{
Connection connection=null;
Statement statement=null;
try
{
String url ="jdbc:mysql://localhost:3306/School";
String usr ="root";
String password = "Root@123";
connection=DriverManager.getConnection(url,usr,password);
if(connection!=null)
{
statement = connection.createStatement();
if(statement!=null)
{
System.out.println("enter sid");
int sid= scanner.nextInt();
String sql=String.format("delete from student where sid=%d",sid);
int n=statement.executeUpdate(sql);
System.out.println("Number of rows updated:"+n);
}
}
}
catch (Exception e) {
e.printStackTrace();
}
finally {
statement.close();
connection.close();
}
}
else
if(option ==5)
{
System.out.println("Thank you....... for using the application ");
}else {
System.out.println("invalid option");
}
}
}
}