-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInsertPayments.java
40 lines (24 loc) · 983 Bytes
/
InsertPayments.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
import java.sql.PreparedStatement;
import javax.swing.JOptionPane;
import javax.swing.JTextField;
import javaGUI.sqlconnection;
public class InsertPayments {
//#########################################################################
private JTextField textFieldIdPayment;
private JTextField textFieldTotalPayment;
private JTextField textFieldcNamePayment;
private JTextField textFieldPaidPayment;
private JTextField textFieldcMobilePayment ;
private JTextField textFieldTRemainingPayment;
private JTextField textFieldCityPayment;
private JTextField textFieldDatePayment;
//######################################################################################################
public java.sql.Date sqlDate;
AutocompletePayment cmpltObj=new AutocompletePayment();
private java.sql.Connection connection=null;
//bill bl=new bill();
public InsertPayments()
{
connection=sqlconnection.dbConnector();
}
}