mirror of
https://github.com/dyiop/astute.git
synced 2025-04-05 21:10:16 -04:00
Fixed defects.
This commit is contained in:
parent
01fa099c61
commit
54476352c1
|
@ -832,10 +832,11 @@ public class SqlDAO extends DAO {
|
||||||
try {
|
try {
|
||||||
List<CustomerContact> contacts = new ArrayList<>();
|
List<CustomerContact> contacts = new ArrayList<>();
|
||||||
Statement stmt = conn.createStatement();
|
Statement stmt = conn.createStatement();
|
||||||
String sql = "SELECT customer_id, contact_id, name, title, work_phone, work_phone_ext, mobile, fax, email, address, FROM astute.customer_contact";
|
String sql = "SELECT customer_id, contact_id, `name`, title, work_phone, work_phone_ext, mobile, fax, email, address FROM customer_contact";
|
||||||
if (customerId!=null && !customerId.isEmpty()) {
|
if (customerId!=null && !customerId.isEmpty()) {
|
||||||
sql += " WHERE customer_id = '" + customerId + "'";
|
sql += " WHERE customer_id = '" + customerId + "'";
|
||||||
}
|
}
|
||||||
|
System.out.println(sql);
|
||||||
ResultSet rs = stmt.executeQuery(sql);
|
ResultSet rs = stmt.executeQuery(sql);
|
||||||
while (rs.next()) {
|
while (rs.next()) {
|
||||||
String customerID = rs.getString(1);
|
String customerID = rs.getString(1);
|
||||||
|
@ -893,8 +894,8 @@ public class SqlDAO extends DAO {
|
||||||
|
|
||||||
updateClause = updateClause + " name = '" + name + "',";
|
updateClause = updateClause + " name = '" + name + "',";
|
||||||
updateClause = updateClause + " title = '" + title + "',";
|
updateClause = updateClause + " title = '" + title + "',";
|
||||||
updateClause = updateClause + " workPhone = " + workPhone + ",";
|
updateClause = updateClause + " work_phone = " + workPhone + ",";
|
||||||
updateClause = updateClause + " phext = " + phExt + ",";
|
updateClause = updateClause + " work_phone_ext = " + phExt + ",";
|
||||||
updateClause = updateClause + " mobile = " + mobile + ",";
|
updateClause = updateClause + " mobile = " + mobile + ",";
|
||||||
updateClause = updateClause + " fax = " + fax + ",";
|
updateClause = updateClause + " fax = " + fax + ",";
|
||||||
updateClause = updateClause + " address = '" + address + "',";
|
updateClause = updateClause + " address = '" + address + "',";
|
||||||
|
@ -922,7 +923,7 @@ public class SqlDAO extends DAO {
|
||||||
CallableStatement stmt = conn.prepareCall("{? = call delete_customer_contact(?,?)}");
|
CallableStatement stmt = conn.prepareCall("{? = call delete_customer_contact(?,?)}");
|
||||||
stmt.registerOutParameter(1, Types.VARCHAR);
|
stmt.registerOutParameter(1, Types.VARCHAR);
|
||||||
stmt.setString(2, customerId);
|
stmt.setString(2, customerId);
|
||||||
stmt.setInt(2, contactId);
|
stmt.setInt(3, contactId);
|
||||||
stmt.executeUpdate();
|
stmt.executeUpdate();
|
||||||
result = stmt.getString(1);
|
result = stmt.getString(1);
|
||||||
System.out.println(result);
|
System.out.println(result);
|
||||||
|
|
|
@ -12,6 +12,9 @@ public class CustomerContactRequest {
|
||||||
String email;
|
String email;
|
||||||
String address;
|
String address;
|
||||||
|
|
||||||
|
public CustomerContactRequest() {
|
||||||
|
|
||||||
|
}
|
||||||
public CustomerContactRequest(String customerId,int contactId,String name,String title,int workPhone,int phExt,int mobile, int fax, String email, String address) {
|
public CustomerContactRequest(String customerId,int contactId,String name,String title,int workPhone,int phExt,int mobile, int fax, String email, String address) {
|
||||||
this.customerId = customerId;
|
this.customerId = customerId;
|
||||||
this.contactId = contactId;
|
this.contactId = contactId;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user