-
Notifications
You must be signed in to change notification settings - Fork 0
/
Db.java
138 lines (97 loc) · 3.63 KB
/
Db.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
package project_pkg;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.Scanner;
public class Db {
public void menu() {
System.out.println("********* Database Management *************");
System.out.println("1.Enter new record");
System.out.println("2.Edit existing record details");
System.out.println("3.Display all records");
System.out.println("4.Remove record form database");
System.out.println("5.Exit");
}
public void add_record() {
try {
Class.forName("com.mysql.cj.jdbc.Driver");
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/olstore","root","");
PreparedStatement ps = con.prepareStatement("Insert into info values(?,?,?,?)");
Scanner sc = new Scanner(System.in);
System.out.println("Enter Customer Id");
int id = sc.nextInt();
System.out.println("Enter Customer Name");
String name = sc.next();
System.out.println("Enter Customer Address");
String adr = sc.next();
System.out.println("Enter Customer Contact Number");
int num = sc.nextInt();
ps.setInt(1, id);
ps.setString(2,name);
ps.setString(3,adr);
ps.setInt(4, num);
int i = ps.executeUpdate();
System.out.println("Customer Record Inserted Successfully");
}
catch (Exception e)
{
System.out.println(e);
}
}
public void edit_record() {
try {
Class.forName("com.mysql.cj.jdbc.Driver");
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/olstore","root","");
PreparedStatement ps = con.prepareStatement("Update info set name=? where id=?");
Scanner sc = new Scanner(System.in);
System.out.println("Enter name");
String name = sc.next();
System.out.println("Enter Id");
int id = sc.nextInt();
ps.setString(1,name);
ps.setInt(2, id);
int i = ps.executeUpdate();
System.out.println("Customer Record Updated Successfully");
}
catch (Exception e)
{
System.out.println(e);
}
}
public void display_records() {
try {
Class.forName("com.mysql.cj.jdbc.Driver");
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/olstore","root","");
java.sql.Statement st = con.createStatement();
ResultSet rs = st.executeQuery("Select * from info");
System.out.println("ID "+"Name "+"Address "+"Contact Number");
while(rs.next())
{
System.out.println(rs.getInt(1)+" "+rs.getString(2)+" "+rs.getString(3)+" "+rs.getInt(4));
// int i = rs.getInt(1);
}
}
catch (Exception e)
{
System.out.println(e);
}
}
public void remove_record() {
try {
Class.forName("com.mysql.cj.jdbc.Driver");
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/olstore","root","");
PreparedStatement ps = con.prepareStatement("Delete from info where id=?");
Scanner sc = new Scanner(System.in);
System.out.println("Enter Customer Id:");
int id = sc.nextInt();
ps.setInt(1, id);
int i = ps.executeUpdate();
System.out.println("Record Deleted Successfully");
}
catch (Exception e)
{
System.out.println(e);
}
}
}