-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path12_Database.java
81 lines (75 loc) · 1.8 KB
/
12_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
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
/*
12. Write a Java program to create a database,
table in the database,
insert values into the table,
update the values in the table,
and drop the table from the database with MySQL.
*/
import java.sql.Statement;
import java.sql.Connection;
import java.sql.DriverManager;
class dbConnect {
Statement s;
Connection c;
dbConnect() {
try {
Class.forName("com.mysql.jdbc.Driver");
c=DriverManager.getConnection("jdbc:mysql://localhost/sys","root","root");
s=c.createStatement();
s.execute("create table stu1(regno INTEGER not NULL, name text(16), Dept text(6),city text(6))");
System.out.println("Table created");
}
catch(Exception e) {
e.printStackTrace();
}
}
}
class dbInsert {
dbInsert(dbConnect x) {
try {
x.s.execute("insert into stu1 values(001, 'sara', 'CS', 'beng')");
x.s.execute("insert into stu1 values(002, 'mary', 'CS', 'beng')");
System.out.println("Records inserted");
}
catch(Exception e) {
e.printStackTrace();
}
}
}
class dbUpdate {
dbUpdate(dbConnect x) {
try {
String sql = "UPDATE stu1 " + "SET dept = 'CSE' WHERE regno in (001)";
x.s.executeUpdate(sql);
System.out.println("Table Updated");
}
catch (Exception e) {
e.printStackTrace();
}
}
}
class dbDrop {
Statement s;
Connection c;
dbDrop(dbConnect x) {
try {
Class.forName("com.mysql.jdbc.Driver");
c=DriverManager.getConnection("jdbc:mysql://localhost/sys","root","root");
s=c.createStatement();
String sql = "DROP TABLE stu1";
s.executeUpdate(sql);
System.out.println("Table Dropped");
}
catch(Exception e) {
e.printStackTrace();
}
}
}
class Database {
public static void main(String args[]) {
dbConnect x = new dbConnect();
dbInsert y = new dbInsert(x);
dbUpdate z = new dbUpdate(x);
dbDrop w = new dbDrop(x);
}
}