-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathAddAddress.java
88 lines (78 loc) · 3.11 KB
/
AddAddress.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
package comp421;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.sql.ResultSet;
import java.sql.SQLException;
public class AddAddress extends JFrame {
JTextField name= new JTextField("Name");
JTextField phonenum=new JTextField("Phone Number");
JTextField streetaddr = new JTextField("Street Address");
JTextField city = new JTextField("City");
JTextField province = new JTextField("Province");
JTextField postalcode = new JTextField("Postal Code");
JButton add = new JButton("Add");
MainFrame mainFrame = null;
AddAddress frame = this;
ResultSet rs;
String sqlcode;
SQL newaddr;
int userid;
int addrid;
public AddAddress(int uid,SQL sqlo,MainFrame mainFrame){
this.mainFrame = mainFrame;
userid = uid;
System.out.println("userid = "+ userid);
newaddr=sqlo;
JPanel jpanel = new JPanel();
jpanel.setLayout(new GridLayout(6,2));
jpanel.add(new JLabel("Name:")); jpanel.add(name);
jpanel.add(new JLabel("Phone Number:")); jpanel.add(phonenum);
jpanel.add(new JLabel("Street Address: ")); jpanel.add(streetaddr);
jpanel.add(new JLabel("City: ")); jpanel.add(city);
jpanel.add(new JLabel("Province:")); jpanel.add(province);
jpanel.add(new JLabel("Postal Code:")); jpanel.add(postalcode);
this.add(jpanel,BorderLayout.CENTER);
add.addActionListener(new addrlistener());
add.setPreferredSize(new Dimension(20,40));
this.add(add,BorderLayout.SOUTH);
}
public static void invoke (int uid, SQL sqlo,MainFrame mainFrame){
JFrame address = new AddAddress(uid,sqlo,mainFrame);
address.setTitle("Add a new address");
address.setVisible(true);
address.setLocationRelativeTo(null);
address.setSize(400,220);
address.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
}
class addrlistener implements ActionListener {
public void actionPerformed(ActionEvent e){
sqlcode="select max(addrid) from address";
rs=newaddr.QueryExchte(sqlcode);
try {
rs.next();
addrid= rs.getInt(1)+1;
} catch (SQLException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
String Name= name.getText();
String Pnum= phonenum.getText();
String Streetaddr= streetaddr.getText();
String City = city.getText();
String Province = province.getText();
String Postalcode = postalcode.getText();
if(Name.trim().isEmpty()||Pnum.trim().isEmpty()||Streetaddr.trim().isEmpty()||City.trim().isEmpty()||Province.trim().isEmpty()||Postalcode.trim().isEmpty())
JOptionPane.showMessageDialog(null, "It is required to fill in every blank","Error",JOptionPane.ERROR_MESSAGE);
else
{
sqlcode="insert into address values ("+addrid+","+userid+", \'"+Name+"\', \'"+Pnum+"\', \'"+Province+"\', \'"+City+"\', \'"+Streetaddr+"\', \'"+Postalcode+"\')"; // Insert a new address of this user to the table address
newaddr.WriteExcute(sqlcode);
JOptionPane.showMessageDialog(null, "You have successfully added a new address", "Success", JOptionPane.INFORMATION_MESSAGE,new ImageIcon(AddAddress.class.getResource("success.png")));
mainFrame.setVisible(true);
mainFrame.setSearchAndBuyButtonEnable(true);
frame.dispose();
}
}
}
}