-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJdbcSingleton.java
144 lines (127 loc) · 3.88 KB
/
JdbcSingleton.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
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package jdbcSingleton;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
/**
*
* @author manish
*/
public class JdbcSingleton {
private static JdbcSingleton jdbc;
private JdbcSingleton() {
}
public static JdbcSingleton getInstance() {
if (jdbc == null) {
jdbc = new JdbcSingleton();
}
return jdbc;
}
private static Connection getConnection() throws ClassNotFoundException, SQLException {
Connection con = null;
Class.forName("com.mysql.jdbc.Driver");
con = DriverManager.getConnection("jdbc:mysql://localhost:3306/employee", "root", "");
return con;
}
//to insert the record in database
public int insert(int eid, String name, int age) throws ClassNotFoundException, SQLException {
Connection c = null;
PreparedStatement ps = null;
int recordCounter = 0;
try {
c = this.getConnection();
ps = c.prepareStatement("insert into emp(eid,name,age)values(?,?,?)");
ps.setInt(1, eid);
ps.setString(2, name);
ps.setInt(3, age);
recordCounter = ps.executeUpdate();
} catch (Exception e) {
e.printStackTrace();
} finally {
if (ps != null) {
ps.close();
}
if (c != null) {
c.close();
}
}
return recordCounter;
}
//to view the data from database
public void view() throws SQLException {
Connection con = null;
PreparedStatement ps = null;
ResultSet rs = null;
try {
con = this.getConnection();
ps = con.prepareStatement("select * from emp");
// ps.setString(1, name);
rs = ps.executeQuery();
while (rs.next()) {
System.out.println("Eid= " + rs.getInt(1) + "\t" + "Name= " + rs.getString(2)+"\t" + "age= " + rs.getInt(3));
}
} catch (Exception e) {
System.out.println(e);
} finally {
if (rs != null) {
rs.close();
}
if (ps != null) {
ps.close();
}
if (con != null) {
con.close();
}
}
}
//update age
public int update(int eid,String name, int age) throws SQLException {
Connection c = null;
PreparedStatement ps = null;
int recordCounter = 0;
try {
c = this.getConnection();
ps = c.prepareStatement("update emp set name=?,age=? where eid="+ eid + " ");
ps.setString(1, name);
ps.setInt(2, age);
recordCounter = ps.executeUpdate();
} catch (Exception e) {
e.printStackTrace();
} finally {
if (ps != null) {
ps.close();
}
if (c != null) {
c.close();
}
}
return recordCounter;
}
// to delete the data from the database
public int delete(int userid) throws SQLException {
Connection c = null;
PreparedStatement ps = null;
int recordCounter = 0;
try {
c = this.getConnection();
ps = c.prepareStatement(" delete from emp where eid='" + userid + "' ");
recordCounter = ps.executeUpdate();
} catch (Exception e) {
e.printStackTrace();
} finally {
if (ps != null) {
ps.close();
}
if (c != null) {
c.close();
}
}
return recordCounter;
}
}