mirror of
https://github.com/dyiop/astute.git
synced 2025-04-05 13:00:16 -04:00
Fixed defects.
This commit is contained in:
parent
b497b7bdc3
commit
91a5c8f590
|
@ -292,7 +292,7 @@ public class SqlDAO extends DAO {
|
|||
public void updateServiceType(int serviceTypeId, String desc) throws AstuteException {
|
||||
try {
|
||||
Statement stmt = conn.createStatement();
|
||||
String sql = "UPDATE service_type desc = '" + desc + "' WHERE service_type_id = " + serviceTypeId;
|
||||
String sql = "UPDATE service_type SET `desc` = '" + desc + "' WHERE service_type_id = " + serviceTypeId;
|
||||
stmt.executeUpdate(sql);
|
||||
} catch (SQLException e) {
|
||||
e.printStackTrace();
|
||||
|
|
Loading…
Reference in New Issue
Block a user