-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSqlPrompt.java
286 lines (234 loc) · 8.99 KB
/
SqlPrompt.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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
import java.sql.*;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.util.*;
import java.text.*;
public class SqlPrompt extends JFrame implements ActionListener {
JFrame jf;
JLabel l1;
JTextField tf1,tf2;
JButton b1,b2,b3;
JTextArea ta;
Container c;
String query;
Connection cn = null;
/* ------------------Class to retrieve the Connection object ------------------------------*/
public Connection Con() throws ClassNotFoundException,SQLException{
Class.forName("oracle.jdbc.driver.OracleDriver");
cn = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:XE","system","system");
return cn;
}
/*----------------------------------Constructor-------------------------------------------- */
public SqlPrompt() {
jf = new JFrame("SQL Prompt");
c = jf.getContentPane();
c.setLayout(null); //FREE-HAND
ta = new JTextArea();
l1 = new JLabel("Enter Table Name");
tf1 = new JTextField();
tf2 = new JTextField();
b1 = new JButton("View Table");
b2 = new JButton("Execute");
b3 = new JButton("Clear");
b1.addActionListener(this);
b2.addActionListener(this);
b3.addActionListener(this);
/*----------------Set Positions---------------------------*/
tf1.setBounds(10,19,400,23);
tf2.setBounds(540,145,140,22);
ta.setBounds(10,60,480,300);
l1.setBounds(540,120,150,22);
b1.setBounds(210,380,130,23);
b2.setBounds(412,19,80,22);
b3.setBounds(210,410,130,23);
ta.setMargin(new Insets(2,8,2,4));
ta.setEditable(false);
/*----------------Add to Container------------------------*/
c.add(tf1);
c.add(l1);
c.add(ta);
c.add(b1);
c.add(b2);
c.add(tf2);
c.add(b3);
jf.getContentPane().setBackground(new Color(107, 106, 104));
jf.setDefaultCloseOperation(EXIT_ON_CLOSE);
jf.setSize(723,493);
jf.setResizable(false);
jf.setVisible(true);
jf.setLocationRelativeTo(null);
/*---------------------------------------------------------*/
}
@Override /*----------------ActionListener Method ---> actionPerformed--------------*/
public void actionPerformed(ActionEvent actionevent) {
/*-----------------------Button VIEW TABLE--------------------------*/
if(actionevent.getSource() == b1) {
String table_name = tf2.getText();
if(table_name.equals("")) {
JOptionPane.showMessageDialog(null,"Please Enter TABLE NAME");
return;
}
String query = "select * from "+table_name;
ta.setText("");
try {
cn = Con(); /*---------Connection Object---------------*/
Statement st = cn.createStatement();
ResultSet rs = st.executeQuery(query);
ResultSetMetaData data = rs.getMetaData();
int cols = data.getColumnCount();
String data_type[] = new String[cols+1];
String col_name[] = new String[cols+1];
/*-------------Retrieval of ResultSet Properties(ResultSetMetaData)--------*/
for(int i = 1;i <= cols; i++) {
col_name[i] = data.getColumnLabel(i);
ta.append(data.getColumnLabel(i)+"\t ");
data_type[i] = data.getColumnTypeName(i);
}
ta.append("\n\n------------------------------------------------");
ta.append("-------------------------------------\n");
/*--------------------------Display Of Data--------------------------------*/
while(rs.next()) {
String result = "";
int k = 1;
while(k <= cols) {
/*---------Switch Case to retrieve Datatype-----------------*/
switch(data_type[k]) {
/*----------NUMBER Datatype--------*/
case "NUMBER" :
int num = 0;
double d = rs.getDouble(k);
if(d%1 == 0.0) {
num = (int)d;
ta.append(Integer.toString(num)+"\t ");
k++;
}
else {
ta.append(Double.toString(d)+"\t ");
k++;
}
break;
/*-----------VARCHAR Datatype----------*/
case "VARCHAR2" :
ta.append(rs.getString(k)+"\t ");
k++;
break;
/*-----------DATE Datatype-------------*/
case "DATE" :
java.sql.Date s_date = rs.getDate(k);
java.util.Date j_date = (java.util.Date)s_date;
SimpleDateFormat sdf = new SimpleDateFormat("dd-MM-yyyy"); /*--ORACLE DATE MM Capital--*/
ta.append(sdf.format(j_date)+"\t ");
k++;
break;
}
}
ta.append("\n");
}
}
catch (ClassNotFoundException ce) {
ta.setText("");
ta.append("Connection Error\nPlease check server logs for more details.");
ce.printStackTrace();
}
catch (SQLException se) {
ta.setText("");
ta.append("SQL Error\nPlease check server logs for more details.");
se.printStackTrace();
}
}
/*-----------------------Button EXECUTE--------------------------*/
if(actionevent.getSource() == b2) {
ta.setText("");
String query = tf1.getText();
if(query.equals("")) {
JOptionPane.showMessageDialog(null,"Please enter a Query");
return;
}
if((query.charAt(query.length()-1)) == ';') /*---------Omitting the semicolon------------*/
query = query.substring(0,query.length()-1);
try {
cn = Con(); /*---------Connection Object---------------*/
Statement st = cn.createStatement();
boolean b = st.execute(query);
if(b) { /*-----------------Select Statements--------------*/
ResultSet rs = st.getResultSet();
ResultSetMetaData data = rs.getMetaData();
int cols = data.getColumnCount();
String data_type[] = new String[cols+1];
String col_name[] = new String[cols+1];
/*-------------Retrieval of ResultSet Properties(ResultSetMetaData)--------*/
for(int i = 1;i <= cols; i++) {
col_name[i] = data.getColumnLabel(i);
ta.append(data.getColumnLabel(i)+"\t ");
data_type[i] = data.getColumnTypeName(i);
}
ta.append("\n\n------------------------------------------------");
ta.append("-------------------------------------\n");
/*--------------------------Display Of Data--------------------------------*/
while(rs.next()) {
String result = "";
int k = 1;
while(k <= cols) {
/*---------Switch Case to retrieve Datatype-----------------*/
switch(data_type[k]) {
/*----------NUMBER Datatype--------*/
case "NUMBER" :
int num = 0;
double d = rs.getDouble(k);
if(d%1 == 0.0) {
num = (int)d;
ta.append(Integer.toString(num)+"\t ");
k++;
}
else {
ta.append(Double.toString(d)+"\t ");
k++;
}
break;
/*-----------VARCHAR Datatype----------*/
case "VARCHAR2" :
ta.append(rs.getString(k)+"\t ");
k++;
break;
/*-----------DATE Datatype-------------*/
case "DATE" :
java.sql.Date s_date = rs.getDate(k);
java.util.Date j_date = (java.util.Date)s_date;
SimpleDateFormat sdf = new SimpleDateFormat("dd-MM-yyyy"); /*--ORACLE DATE MM Capital--*/
ta.append(sdf.format(j_date)+"\t ");
k++;
break;
}
}
ta.append("\n");
}
}
else {
int k = st.getUpdateCount();
ta.append(k + " times updated");
}
}
catch (ClassNotFoundException ce) {
ta.setText("");
ta.append("Connection Error\nPlease check server logs for more details.");
ce.printStackTrace();
}
catch (SQLException se) {
ta.setText("");
ta.append("SQL Error\nPlease check server logs for more details.");
se.printStackTrace();
}
}
/*-----------------------Button CLEAR-----------------------------*/
if(actionevent.getSource() == b3) {
ta.setText("");
tf1.setText("");
tf2.setText("");
}
}
public static void main(String[] args) {
SqlPrompt sqlprompt = new SqlPrompt();
}
}