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
b497b7bdc3
commit
91a5c8f590
|
@ -292,7 +292,7 @@ public class SqlDAO extends DAO {
|
||||||
public void updateServiceType(int serviceTypeId, String desc) throws AstuteException {
|
public void updateServiceType(int serviceTypeId, String desc) throws AstuteException {
|
||||||
try {
|
try {
|
||||||
Statement stmt = conn.createStatement();
|
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);
|
stmt.executeUpdate(sql);
|
||||||
} catch (SQLException e) {
|
} catch (SQLException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user